#[repr(C)]
pub struct otChildInfo {
Show 18 fields pub mExtAddress: otExtAddress, pub mTimeout: u32, pub mAge: u32, pub mConnectionTime: u64, pub mRloc16: u16, pub mChildId: u16, pub mNetworkDataVersion: u8, pub mLinkQualityIn: u8, pub mAverageRssi: i8, pub mLastRssi: i8, pub mFrameErrorRate: u16, pub mMessageErrorRate: u16, pub mQueuedMessageCnt: u16, pub mSupervisionInterval: u16, pub mVersion: u8, pub _bitfield_align_1: [u8; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>, pub __bindgen_padding_0: [u16; 3],
}
Expand description

Holds diagnostic information for a Thread Child

Fields§

§mExtAddress: otExtAddress

< IEEE 802.15.4 Extended Address

§mTimeout: u32

< Timeout

§mAge: u32

< Seconds since last heard

§mConnectionTime: u64

< Seconds since attach (requires OPENTHREAD_CONFIG_UPTIME_ENABLE)

§mRloc16: u16

< RLOC16

§mChildId: u16

< Child ID

§mNetworkDataVersion: u8

< Network Data Version

§mLinkQualityIn: u8

< Link Quality In

§mAverageRssi: i8

< Average RSSI

§mLastRssi: i8

< Last observed RSSI

§mFrameErrorRate: u16

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

§mMessageErrorRate: u16

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

§mQueuedMessageCnt: u16

< Number of queued messages for the child.

§mSupervisionInterval: u16

< Supervision interval (in seconds).

§mVersion: u8

< MLE version

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

Implementations§

source§

impl otChildInfo

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 mIsStateRestoring(&self) -> bool

source

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

source

pub fn mIsCslSynced(&self) -> bool

source

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

source

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

Trait Implementations§

source§

impl Clone for otChildInfo

source§

fn clone(&self) -> otChildInfo

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 otChildInfo

source§

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

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

impl Default for otChildInfo

source§

fn default() -> otChildInfo

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

impl Copy for otChildInfo

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.