#[repr(C)]
pub struct otOperationalDatasetComponents { pub mIsActiveTimestampPresent: bool, pub mIsPendingTimestampPresent: bool, pub mIsNetworkKeyPresent: bool, pub mIsNetworkNamePresent: bool, pub mIsExtendedPanIdPresent: bool, pub mIsMeshLocalPrefixPresent: bool, pub mIsDelayPresent: bool, pub mIsPanIdPresent: bool, pub mIsChannelPresent: bool, pub mIsPskcPresent: bool, pub mIsSecurityPolicyPresent: bool, pub mIsChannelMaskPresent: bool, }
Expand description

Represents presence of different components in Active or Pending Operational Dataset.

Fields§

§mIsActiveTimestampPresent: bool

< TRUE if Active Timestamp is present, FALSE otherwise.

§mIsPendingTimestampPresent: bool

< TRUE if Pending Timestamp is present, FALSE otherwise.

§mIsNetworkKeyPresent: bool

< TRUE if Network Key is present, FALSE otherwise.

§mIsNetworkNamePresent: bool

< TRUE if Network Name is present, FALSE otherwise.

§mIsExtendedPanIdPresent: bool

< TRUE if Extended PAN ID is present, FALSE otherwise.

§mIsMeshLocalPrefixPresent: bool

< TRUE if Mesh Local Prefix is present, FALSE otherwise.

§mIsDelayPresent: bool

< TRUE if Delay Timer is present, FALSE otherwise.

§mIsPanIdPresent: bool

< TRUE if PAN ID is present, FALSE otherwise.

§mIsChannelPresent: bool

< TRUE if Channel is present, FALSE otherwise.

§mIsPskcPresent: bool

< TRUE if PSKc is present, FALSE otherwise.

§mIsSecurityPolicyPresent: bool

< TRUE if Security Policy is present, FALSE otherwise.

§mIsChannelMaskPresent: bool

< TRUE if Channel Mask is present, FALSE otherwise.

Trait Implementations§

source§

impl Clone for otOperationalDatasetComponents

source§

fn clone(&self) -> otOperationalDatasetComponents

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 otOperationalDatasetComponents

source§

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

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

impl Default for otOperationalDatasetComponents

source§

fn default() -> otOperationalDatasetComponents

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

impl Copy for otOperationalDatasetComponents

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.