pub struct TxtRecordEntry {
pub key: String,
pub status: TxtRecordFindResult,
pub value: Option<Vec<u8>>,
}Expand description
One decoded TXT-record entry.
Fields§
§key: String§status: TxtRecordFindResult§value: Option<Vec<u8>>Trait Implementations§
Source§impl Clone for TxtRecordEntry
impl Clone for TxtRecordEntry
Source§fn clone(&self) -> TxtRecordEntry
fn clone(&self) -> TxtRecordEntry
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 moreSource§impl Debug for TxtRecordEntry
impl Debug for TxtRecordEntry
Source§impl PartialEq for TxtRecordEntry
impl PartialEq for TxtRecordEntry
Source§fn eq(&self, other: &TxtRecordEntry) -> bool
fn eq(&self, other: &TxtRecordEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TxtRecordEntry
impl StructuralPartialEq for TxtRecordEntry
Auto Trait Implementations§
impl Freeze for TxtRecordEntry
impl RefUnwindSafe for TxtRecordEntry
impl Send for TxtRecordEntry
impl Sync for TxtRecordEntry
impl Unpin for TxtRecordEntry
impl UnsafeUnpin for TxtRecordEntry
impl UnwindSafe for TxtRecordEntry
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