[][src]Struct new_tokio_smtp::AddressLiteral

pub struct AddressLiteral(_);

represents a AddressLiteral

Implementations

impl AddressLiteral[src]

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

return the inner representation as &str

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

create a new instance from a string without validating the input

Trait Implementations

impl AsRef<str> for AddressLiteral[src]

impl Clone for AddressLiteral[src]

impl Debug for AddressLiteral[src]

impl Eq for AddressLiteral[src]

impl<'a> From<&'a Ipv4Addr> for AddressLiteral[src]

impl<'a> From<&'a Ipv6Addr> for AddressLiteral[src]

impl From<AddressLiteral> for ClientId[src]

impl From<IpAddr> for AddressLiteral[src]

impl From<Ipv4Addr> for AddressLiteral[src]

impl From<Ipv6Addr> for AddressLiteral[src]

impl Hash for AddressLiteral[src]

impl Into<String> for AddressLiteral[src]

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

impl PartialEq<AddressLiteral> for AddressLiteral[src]

impl PartialEq<String> for AddressLiteral[src]

impl PartialEq<str> for AddressLiteral[src]

impl StructuralEq for AddressLiteral[src]

impl StructuralPartialEq for AddressLiteral[src]

Auto Trait Implementations

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> From<T> for T[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.