Trait trust_dns::rr::IntoName [] [src]

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

Conversion into a Name

Required Methods

Convert this into Name

Implementations on Foreign Types

impl IntoName for String
[src]

[src]

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

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

[src]

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

Implementors