#[repr(C)]
pub struct otNeighborInfo {
Show 16 fields pub mExtAddress: otExtAddress, pub mAge: u32, pub mConnectionTime: u32, pub mRloc16: u16, pub mLinkFrameCounter: u32, pub mMleFrameCounter: u32, pub mLinkQualityIn: u8, pub mAverageRssi: i8, pub mLastRssi: i8, pub mLinkMargin: u8, pub mFrameErrorRate: u16, pub mMessageErrorRate: u16, pub mVersion: u16, pub _bitfield_align_1: [u8; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>, pub __bindgen_padding_0: u8,
}
Expand description

Holds diagnostic information for a neighboring Thread node

Fields§

§mExtAddress: otExtAddress

< IEEE 802.15.4 Extended Address

§mAge: u32

< Seconds since last heard

§mConnectionTime: u32

< Seconds since link establishment (requires CONFIG_UPTIME_ENABLE)

§mRloc16: u16

< RLOC16

§mLinkFrameCounter: u32

< Link Frame Counter

§mMleFrameCounter: u32

< MLE Frame Counter

§mLinkQualityIn: u8

< Link Quality In

§mAverageRssi: i8

< Average RSSI

§mLastRssi: i8

< Last observed RSSI

§mLinkMargin: u8

< Link Margin

§mFrameErrorRate: u16

< Frame error rate (0xffff->100%). Requires error tracking feature.

§mMessageErrorRate: u16

< (IPv6) msg error rate (0xffff->100%). Requires error tracking feature.

§mVersion: u16

< Thread version of the neighbor

§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>§__bindgen_padding_0: u8

Implementations§

source§

impl otNeighborInfo

source

pub fn mRxOnWhenIdle(&self) -> bool

source

pub fn set_mRxOnWhenIdle(&mut self, val: bool)

source

pub fn mFullThreadDevice(&self) -> bool

source

pub fn set_mFullThreadDevice(&mut self, val: bool)

source

pub fn mFullNetworkData(&self) -> bool

source

pub fn set_mFullNetworkData(&mut self, val: bool)

source

pub fn mIsChild(&self) -> bool

source

pub fn set_mIsChild(&mut self, val: bool)

source

pub fn new_bitfield_1( mRxOnWhenIdle: bool, mFullThreadDevice: bool, mFullNetworkData: bool, mIsChild: bool ) -> __BindgenBitfieldUnit<[u8; 1]>

Trait Implementations§

source§

impl Clone for otNeighborInfo

source§

fn clone(&self) -> otNeighborInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for otNeighborInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for otNeighborInfo

source§

fn default() -> otNeighborInfo

Returns the “default value” for a type. Read more
source§

impl Copy for otNeighborInfo

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.