[][src]Struct openthread_sys::otNetworkDiagConnectivity

#[repr(C)]pub struct otNetworkDiagConnectivity {
    pub mParentPriority: i8,
    pub mLinkQuality3: u8,
    pub mLinkQuality2: u8,
    pub mLinkQuality1: u8,
    pub mLeaderCost: u8,
    pub mIdSequence: u8,
    pub mActiveRouters: u8,
    pub mSedBufferSize: u16,
    pub mSedDatagramCount: u8,
}

This structure represents a Network Diagnostic Connectivity value.

Fields

mParentPriority: i8

The priority of the sender as a parent.

mLinkQuality3: u8

The number of neighboring devices with which the sender shares a link of quality 3.

mLinkQuality2: u8

The number of neighboring devices with which the sender shares a link of quality 2.

mLinkQuality1: u8

The number of neighboring devices with which the sender shares a link of quality 1.

mLeaderCost: u8

The sender's routing cost to the Leader.

mIdSequence: u8

The most recent ID sequence number received by the sender.

mActiveRouters: u8

The number of active Routers in the sender's Thread Network Partition.

mSedBufferSize: u16

The guaranteed buffer capacity in octets for all IPv6 datagrams destined to a given SED. Optional.

mSedDatagramCount: u8

The guaranteed queue capacity in number of IPv6 datagrams destined to a given SED. Optional.

Trait Implementations

impl Clone for otNetworkDiagConnectivity[src]

impl Copy for otNetworkDiagConnectivity[src]

impl Debug for otNetworkDiagConnectivity[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.