pub struct RecordParts<R: RecordData = RData> {
pub name_labels: Name,
pub dns_class: DNSClass,
pub ttl: u32,
pub rdata: R,
pub mdns_cache_flush: bool,
pub proof: Proof,
}
Expand description
Consumes Record
giving public access to fields of Record
so they can
be destructured and taken by value
Fields§
§name_labels: Name
label names
dns_class: DNSClass
dns class
ttl: u32
time to live
rdata: R
rdata
mdns_cache_flush: bool
Available on crate feature
mdns
only.mDNS cache flush
proof: Proof
Available on crate feature
dnssec
only.mDNS cache flush
Trait Implementations§
Source§impl<R: RecordData> From<Record<R>> for RecordParts<R>
impl<R: RecordData> From<Record<R>> for RecordParts<R>
Auto Trait Implementations§
impl<R> Freeze for RecordParts<R>where
R: Freeze,
impl<R> RefUnwindSafe for RecordParts<R>where
R: RefUnwindSafe,
impl<R> Send for RecordParts<R>where
R: Send,
impl<R> Sync for RecordParts<R>where
R: Sync,
impl<R> Unpin for RecordParts<R>where
R: Unpin,
impl<R> UnwindSafe for RecordParts<R>where
R: UnwindSafe,
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