Struct trust_dns_proto::rr::resource::RecordParts
source · pub struct RecordParts<R: RecordData = RData> {
pub name_labels: Name,
pub rr_type: RecordType,
pub dns_class: DNSClass,
pub ttl: u32,
pub rdata: Option<R>,
}
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
rr_type: RecordType
record type
dns_class: DNSClass
dns class
ttl: u32
time to live
rdata: Option<R>
rdata
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