[][src]Struct openthread_sys::otOperationalDatasetComponents

#[repr(C, packed)]pub struct otOperationalDatasetComponents {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2], u8>,
}

This structure represents presence of different components in Active or Pending Operational Dataset.

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 2], u8>

Implementations

impl otOperationalDatasetComponents[src]

pub fn mIsActiveTimestampPresent(&self) -> bool[src]

pub fn set_mIsActiveTimestampPresent(&mut self, val: bool)[src]

pub fn mIsPendingTimestampPresent(&self) -> bool[src]

pub fn set_mIsPendingTimestampPresent(&mut self, val: bool)[src]

pub fn mIsMasterKeyPresent(&self) -> bool[src]

pub fn set_mIsMasterKeyPresent(&mut self, val: bool)[src]

pub fn mIsNetworkNamePresent(&self) -> bool[src]

pub fn set_mIsNetworkNamePresent(&mut self, val: bool)[src]

pub fn mIsExtendedPanIdPresent(&self) -> bool[src]

pub fn set_mIsExtendedPanIdPresent(&mut self, val: bool)[src]

pub fn mIsMeshLocalPrefixPresent(&self) -> bool[src]

pub fn set_mIsMeshLocalPrefixPresent(&mut self, val: bool)[src]

pub fn mIsDelayPresent(&self) -> bool[src]

pub fn set_mIsDelayPresent(&mut self, val: bool)[src]

pub fn mIsPanIdPresent(&self) -> bool[src]

pub fn set_mIsPanIdPresent(&mut self, val: bool)[src]

pub fn mIsChannelPresent(&self) -> bool[src]

pub fn set_mIsChannelPresent(&mut self, val: bool)[src]

pub fn mIsPskcPresent(&self) -> bool[src]

pub fn set_mIsPskcPresent(&mut self, val: bool)[src]

pub fn mIsSecurityPolicyPresent(&self) -> bool[src]

pub fn set_mIsSecurityPolicyPresent(&mut self, val: bool)[src]

pub fn mIsChannelMaskPresent(&self) -> bool[src]

pub fn set_mIsChannelMaskPresent(&mut self, val: bool)[src]

pub fn new_bitfield_1(
    mIsActiveTimestampPresent: bool,
    mIsPendingTimestampPresent: bool,
    mIsMasterKeyPresent: bool,
    mIsNetworkNamePresent: bool,
    mIsExtendedPanIdPresent: bool,
    mIsMeshLocalPrefixPresent: bool,
    mIsDelayPresent: bool,
    mIsPanIdPresent: bool,
    mIsChannelPresent: bool,
    mIsPskcPresent: bool,
    mIsSecurityPolicyPresent: bool,
    mIsChannelMaskPresent: bool
) -> __BindgenBitfieldUnit<[u8; 2], u8>
[src]

Trait Implementations

impl Clone for otOperationalDatasetComponents[src]

impl Copy for otOperationalDatasetComponents[src]

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