[][src]Struct dns_message_parser::rr::MD

pub struct MD {
    pub domain_name: DomainName,
    pub ttl: u32,
    pub class: Class,
    pub mad_name: DomainName,
}

The mail destination resource record type. (obsolete)

Fields

domain_name: DomainNamettl: u32class: Classmad_name: DomainName

Implementations

impl MD[src]

Trait Implementations

impl Clone for MD[src]

impl Debug for MD[src]

impl Display for MD[src]

impl Eq for MD[src]

impl Hash for MD[src]

impl PartialEq<MD> for MD[src]

impl StructuralEq for MD[src]

impl StructuralPartialEq for MD[src]

impl ToType for MD[src]

Auto Trait Implementations

impl RefUnwindSafe for MD[src]

impl Send for MD[src]

impl Sync for MD[src]

impl Unpin for MD[src]

impl UnwindSafe for MD[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.