[][src]Struct new_tokio_smtp::EhloParam

pub struct EhloParam(_);

represents an EsmtpParam (syntax construct in ehlo response)

Implementations

impl EhloParam[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 EhloParam[src]

impl Clone for EhloParam[src]

impl Debug for EhloParam[src]

impl Eq for EhloParam[src]

impl FromStr for EhloParam[src]

type Err = SyntaxError

The associated error which can be returned from parsing.

impl Hash for EhloParam[src]

impl Into<String> for EhloParam[src]

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

impl PartialEq<EhloParam> for EhloParam[src]

impl PartialEq<String> for EhloParam[src]

impl PartialEq<str> for EhloParam[src]

impl StructuralEq for EhloParam[src]

impl StructuralPartialEq for EhloParam[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.