[][src]Struct openthread_sys::otOperationalDataset

#[repr(C)]pub struct otOperationalDataset {
    pub mActiveTimestamp: u64,
    pub mPendingTimestamp: u64,
    pub mMasterKey: otMasterKey,
    pub mNetworkName: otNetworkName,
    pub mExtendedPanId: otExtendedPanId,
    pub mMeshLocalPrefix: otMeshLocalPrefix,
    pub mDelay: u32,
    pub mPanId: otPanId,
    pub mChannel: u16,
    pub mPskc: otPskc,
    pub mSecurityPolicy: otSecurityPolicy,
    pub mChannelMask: otChannelMask,
    pub mComponents: otOperationalDatasetComponents,
}

This structure represents an Active or Pending Operational Dataset.

Components in Dataset are optional. mComponets structure specifies which components are present in the Dataset.

Fields

mActiveTimestamp: u64

< Active Timestamp

mPendingTimestamp: u64

< Pending Timestamp

mMasterKey: otMasterKey

< Network Master Key

mNetworkName: otNetworkName

< Network Name

mExtendedPanId: otExtendedPanId

< Extended PAN ID

mMeshLocalPrefix: otMeshLocalPrefix

< Mesh Local Prefix

mDelay: u32

< Delay Timer

mPanId: otPanId

< PAN ID

mChannel: u16

< Channel

mPskc: otPskc

< PSKc

mSecurityPolicy: otSecurityPolicy

< Security Policy

mChannelMask: otChannelMask

< Channel Mask

mComponents: otOperationalDatasetComponents

< Specifies which components are set in the Dataset.

Trait Implementations

impl Clone for otOperationalDataset[src]

impl Copy for otOperationalDataset[src]

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