[][src]Struct openthread_sys::otThreadParentResponseInfo

#[repr(C)]pub struct otThreadParentResponseInfo {
    pub mExtAddr: otExtAddress,
    pub mRloc16: u16,
    pub mRssi: i8,
    pub mPriority: i8,
    pub mLinkQuality3: u8,
    pub mLinkQuality2: u8,
    pub mLinkQuality1: u8,
    pub mIsAttached: bool,
}

This structure represents the MLE Parent Response data.

Fields

mExtAddr: otExtAddress

< IEEE 802.15.4 Extended Address of the Parent

mRloc16: u16

< Short address of the Parent

mRssi: i8

< Rssi of the Parent

mPriority: i8

< Parent priority

mLinkQuality3: u8

< Parent Link Quality 3

mLinkQuality2: u8

< Parent Link Quality 2

mLinkQuality1: u8

< Parent Link Quality 1

mIsAttached: bool

< Is the node receiving parent response attached

Trait Implementations

impl Clone for otThreadParentResponseInfo[src]

impl Copy for otThreadParentResponseInfo[src]

impl Debug for otThreadParentResponseInfo[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.