[][src]Struct dns_message_parser::rr::RP

pub struct RP {
    pub domain_name: DomainName,
    pub ttl: u32,
    pub class: Class,
    pub mbox_dname: DomainName,
    pub txt_dname: DomainName,
}

The responsible person resource record type.

Fields

domain_name: DomainNamettl: u32class: Classmbox_dname: DomainNametxt_dname: DomainName

Implementations

impl RP[src]

Trait Implementations

impl Clone for RP[src]

impl Debug for RP[src]

impl Display for RP[src]

impl Eq for RP[src]

impl Hash for RP[src]

impl PartialEq<RP> for RP[src]

impl StructuralEq for RP[src]

impl StructuralPartialEq for RP[src]

impl ToType for RP[src]

Auto Trait Implementations

impl RefUnwindSafe for RP[src]

impl Send for RP[src]

impl Sync for RP[src]

impl Unpin for RP[src]

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