pub struct NamedDnsRecord {
pub name: String,
pub record: DnsRecord,
}Expand description
A named DNS record, which consists of a name and a DNS record.
Fields§
§name: String§record: DnsRecordTrait Implementations§
Source§impl Clone for NamedDnsRecord
impl Clone for NamedDnsRecord
Source§fn clone(&self) -> NamedDnsRecord
fn clone(&self) -> NamedDnsRecord
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 NamedDnsRecord
impl Debug for NamedDnsRecord
Source§impl Hash for NamedDnsRecord
impl Hash for NamedDnsRecord
Source§impl PartialEq for NamedDnsRecord
impl PartialEq for NamedDnsRecord
impl Eq for NamedDnsRecord
impl StructuralPartialEq for NamedDnsRecord
Auto Trait Implementations§
impl Freeze for NamedDnsRecord
impl RefUnwindSafe for NamedDnsRecord
impl Send for NamedDnsRecord
impl Sync for NamedDnsRecord
impl Unpin for NamedDnsRecord
impl UnsafeUnpin for NamedDnsRecord
impl UnwindSafe for NamedDnsRecord
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.