Struct sep2_common::packages::network_status::LLInterface
source · pub struct LLInterface {Show 17 fields
pub cr_cerrors: Uint32,
pub eui64: HexBinary64,
pub ieee_802_15_4: Option<IEEE802154>,
pub link_layer_type: Uint8,
pub ll_ack_not_rx: Option<Uint32>,
pub llcsma_fail: Option<Uint32>,
pub ll_frames_drop_rx: Option<Uint32>,
pub ll_frames_drop_tx: Option<Uint32>,
pub ll_frames_rx: Option<Uint32>,
pub ll_frames_tx: Option<Uint32>,
pub ll_media_access_fail: Option<Uint32>,
pub ll_octets_rx: Option<Uint32>,
pub ll_octets_tx: Option<Uint32>,
pub ll_retry_count: Option<Uint32>,
pub ll_security_error_rx: Option<Uint32>,
pub lo_wpan: Option<LoWPAN>,
pub href: Option<String>,
}
network_status
only.Fields§
§cr_cerrors: Uint32
Contains the number of CRC errors since reset.
eui64: HexBinary64
Contains the EUI-64 of the link layer interface. 48 bit MAC addresses SHALL be changed into an EUI-64 using the method defined in [RFC 4291], Appendix A. (The method is to insert “0xFFFE” as described in the reference.)
ieee_802_15_4: Option<IEEE802154>
§link_layer_type: Uint8
Specifies the type of link layer interface associated with the IPInterface. Values are below. 0 = Unspecified 1 = IEEE 802.3 (Ethernet) 2 = IEEE 802.11 (WLAN) 3 = IEEE 802.15 (PAN) 4 = IEEE 1901 (PLC) All other values reserved.
ll_ack_not_rx: Option<Uint32>
Number of times an ACK was not received for a frame transmitted (when ACK was requested).
llcsma_fail: Option<Uint32>
Number of times CSMA failed.
ll_frames_drop_rx: Option<Uint32>
Number of dropped receive frames.
ll_frames_drop_tx: Option<Uint32>
Number of dropped transmit frames.
ll_frames_rx: Option<Uint32>
Number of link layer frames received.
ll_frames_tx: Option<Uint32>
Number of link layer frames transmitted.
ll_media_access_fail: Option<Uint32>
Number of times access to media failed.
ll_octets_rx: Option<Uint32>
Number of Bytes received.
ll_octets_tx: Option<Uint32>
Number of Bytes transmitted.
ll_retry_count: Option<Uint32>
Number of MAC transmit retries.
ll_security_error_rx: Option<Uint32>
Number of receive security errors.
lo_wpan: Option<LoWPAN>
§href: Option<String>
A reference to the resource address (URI). Required in a response to a GET, ignored otherwise.
Trait Implementations§
source§impl Clone for LLInterface
impl Clone for LLInterface
source§fn clone(&self) -> LLInterface
fn clone(&self) -> LLInterface
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LLInterface
impl Debug for LLInterface
source§impl Default for LLInterface
impl Default for LLInterface
source§fn default() -> LLInterface
fn default() -> LLInterface
source§impl Ord for LLInterface
impl Ord for LLInterface
source§impl PartialEq<LLInterface> for LLInterface
impl PartialEq<LLInterface> for LLInterface
source§fn eq(&self, other: &LLInterface) -> bool
fn eq(&self, other: &LLInterface) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<LLInterface> for LLInterface
impl PartialOrd<LLInterface> for LLInterface
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more