[][src]Struct dns_message_parser::rr::RT

pub struct RT {
    pub domain_name: DomainName,
    pub ttl: u32,
    pub class: Class,
    pub preference: u16,
    pub intermediate_host: DomainName,
}

The route through resource record type.

Fields

domain_name: DomainNamettl: u32class: Classpreference: u16intermediate_host: DomainName

Implementations

impl RT[src]

Trait Implementations

impl Clone for RT[src]

impl Debug for RT[src]

impl Display for RT[src]

impl Eq for RT[src]

impl Hash for RT[src]

impl PartialEq<RT> for RT[src]

impl StructuralEq for RT[src]

impl StructuralPartialEq for RT[src]

impl ToType for RT[src]

Auto Trait Implementations

impl RefUnwindSafe for RT[src]

impl Send for RT[src]

impl Sync for RT[src]

impl Unpin for RT[src]

impl UnwindSafe for RT[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.