#[repr(C)]pub struct otOperationalDataset {Show 13 fields
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,
}Expand description
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§
Source§impl Clone for otOperationalDataset
impl Clone for otOperationalDataset
Source§fn clone(&self) -> otOperationalDataset
fn clone(&self) -> otOperationalDataset
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 otOperationalDataset
impl Debug for otOperationalDataset
impl Copy for otOperationalDataset
Auto Trait Implementations§
impl Freeze for otOperationalDataset
impl RefUnwindSafe for otOperationalDataset
impl Send for otOperationalDataset
impl Sync for otOperationalDataset
impl Unpin for otOperationalDataset
impl UnwindSafe for otOperationalDataset
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