Struct sep2_common::packages::network_status::LoWPAN
source · pub struct LoWPAN {
pub octets_rx: Option<Uint32>,
pub octets_tx: Option<Uint32>,
pub packets_rx: Uint32,
pub packets_tx: Uint32,
pub rx_frag_error: Uint32,
}
Available on crate feature
network_status
only.Expand description
Contains information specific to 6LoWPAN.
Fields§
§octets_rx: Option<Uint32>
Number of Bytes received
octets_tx: Option<Uint32>
Number of Bytes transmitted
packets_rx: Uint32
Number of packets received
packets_tx: Uint32
Number of packets transmitted
rx_frag_error: Uint32
Number of errors receiving fragments
Trait Implementations§
source§impl PartialEq<LoWPAN> for LoWPAN
impl PartialEq<LoWPAN> for LoWPAN
source§impl YaSerialize for LoWPAN
impl YaSerialize for LoWPAN
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Eq for LoWPAN
impl StructuralEq for LoWPAN
impl StructuralPartialEq for LoWPAN
Auto Trait Implementations§
impl RefUnwindSafe for LoWPAN
impl Send for LoWPAN
impl Sync for LoWPAN
impl Unpin for LoWPAN
impl UnwindSafe for LoWPAN
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more