[][src]Trait trust_dns_resolver::IntoName

pub trait IntoName {
    fn into_name(self) -> Result<Name, ProtoError>;
}

Conversion into a Name

Required methods

fn into_name(self) -> Result<Name, ProtoError>

Convert this into Name

Loading content...

Implementations on Foreign Types

impl IntoName for String[src]

fn into_name(self) -> Result<Name, ProtoError>[src]

Performs a utf8, IDNA or punycode, translation of the String into Name

impl<'a> IntoName for &'a str[src]

fn into_name(self) -> Result<Name, ProtoError>[src]

Performs a utf8, IDNA or punycode, translation of the str into Name

Loading content...

Implementors

impl<T> IntoName for T where
    T: Into<Name>, 
[src]

Loading content...