#[repr(C)]pub struct otDnsTxtEntryIterator {
pub mPtr: *const c_void,
pub mData: [u16; 2],
pub mChar: [c_char; 65],
}Expand description
Represents an iterator for TXT record entries (key/value pairs).
The data fields in this structure are intended for use by OpenThread core and caller should not read or change them.
Fields§
§mPtr: *const c_void§mData: [u16; 2]§mChar: [c_char; 65]Trait Implementations§
Source§impl Clone for otDnsTxtEntryIterator
impl Clone for otDnsTxtEntryIterator
Source§fn clone(&self) -> otDnsTxtEntryIterator
fn clone(&self) -> otDnsTxtEntryIterator
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for otDnsTxtEntryIterator
Source§impl Debug for otDnsTxtEntryIterator
impl Debug for otDnsTxtEntryIterator
Auto Trait Implementations§
impl !Send for otDnsTxtEntryIterator
impl !Sync for otDnsTxtEntryIterator
impl Freeze for otDnsTxtEntryIterator
impl RefUnwindSafe for otDnsTxtEntryIterator
impl Unpin for otDnsTxtEntryIterator
impl UnsafeUnpin for otDnsTxtEntryIterator
impl UnwindSafe for otDnsTxtEntryIterator
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