[][src]Struct dns_message_parser::rr::A

pub struct A {
    pub domain_name: DomainName,
    pub ttl: u32,
    pub ipv4_addr: Ipv4Addr,
}

The IPv4 host address resource record type.

Fields

domain_name: DomainNamettl: u32ipv4_addr: Ipv4Addr

Implementations

impl A[src]

Trait Implementations

impl Clone for A[src]

impl Debug for A[src]

impl Display for A[src]

impl Eq for A[src]

impl Hash for A[src]

impl PartialEq<A> for A[src]

impl StructuralEq for A[src]

impl StructuralPartialEq for A[src]

impl ToType for A[src]

Auto Trait Implementations

impl RefUnwindSafe for A[src]

impl Send for A[src]

impl Sync for A[src]

impl Unpin for A[src]

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