#[repr(C)]pub struct otHistoryTrackerIterator {
pub mData32: u32,
pub mData16: u16,
}Expand description
Represents an iterator to iterate through a history list.
The fields in this type are opaque (intended for use by OpenThread core) and therefore should not be accessed/used by caller.
Before using an iterator, it MUST be initialized using otHistoryTrackerInitIterator(),
Fields§
§mData32: u32§mData16: u16Trait Implementations§
Source§impl Clone for otHistoryTrackerIterator
impl Clone for otHistoryTrackerIterator
Source§fn clone(&self) -> otHistoryTrackerIterator
fn clone(&self) -> otHistoryTrackerIterator
Returns a duplicate 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 otHistoryTrackerIterator
impl Debug for otHistoryTrackerIterator
Source§impl Default for otHistoryTrackerIterator
impl Default for otHistoryTrackerIterator
Source§fn default() -> otHistoryTrackerIterator
fn default() -> otHistoryTrackerIterator
Returns the “default value” for a type. Read more
impl Copy for otHistoryTrackerIterator
Auto Trait Implementations§
impl Freeze for otHistoryTrackerIterator
impl RefUnwindSafe for otHistoryTrackerIterator
impl Send for otHistoryTrackerIterator
impl Sync for otHistoryTrackerIterator
impl Unpin for otHistoryTrackerIterator
impl UnsafeUnpin for otHistoryTrackerIterator
impl UnwindSafe for otHistoryTrackerIterator
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