Struct trust_dns_proto::rr::resource::RecordParts[][src]

pub struct RecordParts {
    pub name_labels: Name,
    pub rr_type: RecordType,
    pub dns_class: DNSClass,
    pub ttl: u32,
    pub rdata: RData,
}

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: RData

rdata

Trait Implementations

impl From<Record> for RecordParts[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,