Struct hickory_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: Namelabel names
rr_type: RecordTyperecord type
dns_class: DNSClassdns class
ttl: u32time 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