#[repr(C)]pub struct otChildInfo {Show 13 fields
pub mExtAddress: otExtAddress,
pub mTimeout: u32,
pub mAge: u32,
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 _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
pub __bindgen_padding_0: [u8; 3],
}Expand description
This structure holds diagnostic information for a Thread Child
Fields§
§mExtAddress: otExtAddress< IEEE 802.15.4 Extended Address
mTimeout: u32< Timeout
mAge: u32< Time last heard
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.
_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>§__bindgen_padding_0: [u8; 3]Implementations§
Source§impl otChildInfo
impl otChildInfo
pub fn mRxOnWhenIdle(&self) -> bool
pub fn set_mRxOnWhenIdle(&mut self, val: bool)
pub fn mSecureDataRequest(&self) -> bool
pub fn set_mSecureDataRequest(&mut self, val: bool)
pub fn mFullThreadDevice(&self) -> bool
pub fn set_mFullThreadDevice(&mut self, val: bool)
pub fn mFullNetworkData(&self) -> bool
pub fn set_mFullNetworkData(&mut self, val: bool)
pub fn mIsStateRestoring(&self) -> bool
pub fn set_mIsStateRestoring(&mut self, val: bool)
pub fn new_bitfield_1( mRxOnWhenIdle: bool, mSecureDataRequest: bool, mFullThreadDevice: bool, mFullNetworkData: bool, mIsStateRestoring: bool, ) -> __BindgenBitfieldUnit<[u8; 1], u8>
Trait Implementations§
Source§impl Clone for otChildInfo
impl Clone for otChildInfo
Source§fn clone(&self) -> otChildInfo
fn clone(&self) -> otChildInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for otChildInfo
impl Debug for otChildInfo
impl Copy for otChildInfo
Auto Trait Implementations§
impl Freeze for otChildInfo
impl RefUnwindSafe for otChildInfo
impl Send for otChildInfo
impl Sync for otChildInfo
impl Unpin for otChildInfo
impl UnwindSafe for otChildInfo
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