Enum chrootable_https::dns::RData[][src]

pub enum RData {
    A(Ipv4Addr),
    AAAA(Ipv6Addr),
    CNAME(String),
    MX((u16, String)),
    NS(String),
    PTR(String),
    SOA(SOA),
    SRV((String, u16)),
    TXT(Vec<u8>),
    Other(String),
}

Variants

Trait Implementations

impl Debug for RData
[src]

Formats the value using the given formatter. Read more

impl<'a> From<&'a RData> for RData
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for RData

impl Sync for RData