[][src]Struct mail_smtp::misc::Domain

pub struct Domain(_);

represents a Domain

Note that currently no parse is implemented for Domain, i.e. validation has to be done by the user converting their representation to out using from_unchecked.

Note that the domain is expected to be ascii non ascii strings should be puny encoded.

Implementations

impl Domain[src]

pub fn new_unchecked(domain: String) -> Domain[src]

creates a new domain without validating it's correctness

impl Domain[src]

pub fn as_str(&self) -> &str[src]

return the inner representation as &str

pub fn from_unchecked<I>(data: I) -> Domain where
    I: Into<String>, 
[src]

create a new instance from a string without validating the input

Trait Implementations

impl AsRef<str> for Domain[src]

impl Clone for Domain[src]

impl Debug for Domain[src]

impl Eq for Domain[src]

impl From<Domain> for ClientId[src]

impl FromStr for Domain[src]

type Err = SyntaxError

The associated error which can be returned from parsing.

impl Hash for Domain[src]

impl Into<String> for Domain[src]

impl<'a> PartialEq<&'a str> for Domain[src]

impl PartialEq<Domain> for Domain[src]

impl PartialEq<String> for Domain[src]

impl PartialEq<str> for Domain[src]

impl StructuralEq for Domain[src]

impl StructuralPartialEq for Domain[src]

Auto Trait Implementations

impl RefUnwindSafe for Domain

impl Send for Domain

impl Sync for Domain

impl Unpin for Domain

impl UnwindSafe for Domain

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T> HeaderTryFrom<T> for T[src]

impl<F, T> HeaderTryInto<T> for F where
    T: HeaderTryFrom<F>, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.