[][src]Struct openthread_sys::otMleCounters

#[repr(C)]pub struct otMleCounters {
    pub mDisabledRole: u16,
    pub mDetachedRole: u16,
    pub mChildRole: u16,
    pub mRouterRole: u16,
    pub mLeaderRole: u16,
    pub mAttachAttempts: u16,
    pub mPartitionIdChanges: u16,
    pub mBetterPartitionAttachAttempts: u16,
    pub mParentChanges: u16,
}

This structure represents the Thread MLE counters.

Fields

mDisabledRole: u16

< Number of times device entered OT_DEVICE_ROLE_DISABLED role.

mDetachedRole: u16

< Number of times device entered OT_DEVICE_ROLE_DETACHED role.

mChildRole: u16

< Number of times device entered OT_DEVICE_ROLE_CHILD role.

mRouterRole: u16

< Number of times device entered OT_DEVICE_ROLE_ROUTER role.

mLeaderRole: u16

< Number of times device entered OT_DEVICE_ROLE_LEADER role.

mAttachAttempts: u16

< Number of attach attempts while device was detached.

mPartitionIdChanges: u16

< Number of changes to partition ID.

mBetterPartitionAttachAttempts: u16

< Number of attempts to attach to a better partition.

mParentChanges: u16

Number of times device changed its parents.

Support for this counter requires the feature option OPENTHREAD_CONFIG_MLE_INFORM_PREVIOUS_PARENT_ON_REATTACH to be enabled.

A parent change can happen if device detaches from its current parent and attaches to a different one, or even while device is attached when the periodic parent search feature is enabled (please see option OPENTHREAD_CONFIG_PARENT_SEARCH_ENABLE).

Trait Implementations

impl Clone for otMleCounters[src]

impl Copy for otMleCounters[src]

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