pub struct DnsTxtEntry<'a>(pub otDnsTxtEntry, _);
Expand description
Functional equivalent of otsys::otDnsTxtEntry
.
Tuple Fields§
§0: otDnsTxtEntry
Implementations§
Source§impl<'a> DnsTxtEntry<'a>
impl<'a> DnsTxtEntry<'a>
Sourcepub fn try_new(
key: Option<&'a CStr>,
value: Option<&'a [u8]>,
) -> Result<DnsTxtEntry<'a>, WrongSize>
pub fn try_new( key: Option<&'a CStr>, value: Option<&'a [u8]>, ) -> Result<DnsTxtEntry<'a>, WrongSize>
Tries to create a new DnsTxtEntry
instance. Fails if value is too large.
Sourcepub fn key_field(&self) -> Option<&'a CStr>
pub fn key_field(&self) -> Option<&'a CStr>
Accessor for the mKey
field from otsys::otDnsTxtEntry
.
Sourcepub fn value_field(&self) -> Option<&'a [u8]>
pub fn value_field(&self) -> Option<&'a [u8]>
Accessor for the mValue
field from otsys::otDnsTxtEntry
.
Sourcepub fn key(&self) -> Option<&'a str>
pub fn key(&self) -> Option<&'a str>
The key for this TXT entry.
Will extract the key from the value field if key_field()
returns None
.
Trait Implementations§
Source§impl<'a> Clone for DnsTxtEntry<'a>
impl<'a> Clone for DnsTxtEntry<'a>
Source§fn clone(&self) -> DnsTxtEntry<'a>
fn clone(&self) -> DnsTxtEntry<'a>
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 DnsTxtEntry<'_>
impl Debug for DnsTxtEntry<'_>
Source§impl<'a> Default for DnsTxtEntry<'a>
impl<'a> Default for DnsTxtEntry<'a>
Source§fn default() -> DnsTxtEntry<'a>
fn default() -> DnsTxtEntry<'a>
Returns the “default value” for a type. Read more
Source§impl Display for DnsTxtEntry<'_>
impl Display for DnsTxtEntry<'_>
Source§impl OtCastable for DnsTxtEntry<'_>
impl OtCastable for DnsTxtEntry<'_>
Source§fn as_ot_ptr(&self) -> *const Self::OtType
fn as_ot_ptr(&self) -> *const Self::OtType
Returns a pointer to the underlying
Self::OtType
instance.Source§fn as_ot_mut_ptr(&mut self) -> *mut Self::OtType
fn as_ot_mut_ptr(&mut self) -> *mut Self::OtType
Returns a mutable pointer to the underlying
Self::OtType
instance.Source§unsafe fn ref_from_ot_ptr<'a>(ptr: *const Self::OtType) -> Option<&'a Self>
unsafe fn ref_from_ot_ptr<'a>(ptr: *const Self::OtType) -> Option<&'a Self>
Creates a reference from a pointer to an
Self::OtType
. Read moreSource§unsafe fn mut_from_ot_mut_ptr<'a>(
ptr: *mut Self::OtType,
) -> Option<&'a mut Self>
unsafe fn mut_from_ot_mut_ptr<'a>( ptr: *mut Self::OtType, ) -> Option<&'a mut Self>
Creates a mut reference from a mut pointer to an
Self::OtType
. Read moreSource§fn as_ot_ref(&self) -> &Self::OtType
fn as_ot_ref(&self) -> &Self::OtType
Returns a reference to the original OpenThread type
Self::OtType
.Source§fn as_ot_mut(&mut self) -> &mut Self::OtType
fn as_ot_mut(&mut self) -> &mut Self::OtType
Returns a mutable reference to the original OpenThread type
Self::OtType
.Source§fn ref_from_ot_ref(x: &Self::OtType) -> &Self
fn ref_from_ot_ref(x: &Self::OtType) -> &Self
Casts a reference to the original OpenThread type to a reference to
Self
.Auto Trait Implementations§
impl<'a> Freeze for DnsTxtEntry<'a>
impl<'a> RefUnwindSafe for DnsTxtEntry<'a>
impl<'a> !Send for DnsTxtEntry<'a>
impl<'a> !Sync for DnsTxtEntry<'a>
impl<'a> Unpin for DnsTxtEntry<'a>
impl<'a> UnwindSafe for DnsTxtEntry<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)