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
A(Ipv4Addr)AAAA(Ipv6Addr)CNAME(String)MX((u16, String))NS(String)PTR(String)SOA(SOA)SRV((String, u16))TXT(Vec<u8>)Other(String)
Trait Implementations
impl Debug for RData[src]
impl Debug for RDatafn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<'a> From<&'a RData> for RData[src]
impl<'a> From<&'a RData> for RData