[][src]Trait trust_dns_resolver::TryParseIp

pub trait TryParseIp {
    fn try_parse_ip(&self) -> Option<RData>;
}

Types of this trait will can be attempted for conversion to an IP address

Required methods

fn try_parse_ip(&self) -> Option<RData>

Attempts to parse self into an RData::A or RData::AAAA, None is returned if not possible

Loading content...

Implementations on Foreign Types

impl TryParseIp for String[src]

impl<'a, T> TryParseIp for &'a T where
    T: TryParseIp + ?Sized
[src]

impl TryParseIp for str[src]

Loading content...

Implementors

impl TryParseIp for Name[src]

pub fn try_parse_ip(&self) -> Option<RData>[src]

Always returns none for Name, it assumes something that is already a name, wants to be a name

Loading content...