[][src]Struct new_tokio_smtp::EsmtpValue

pub struct EsmtpValue(_);

represents an EsmtpValue (syntax construct in ehlo response)

Implementations

impl EsmtpValue[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

impl EsmtpValue[src]

pub fn new<I>(val: I) -> Result<Self, SyntaxError> where
    I: Into<String>, 
[src]

create a new EsmtpValue from a string

This validates the input, possible creating a syntax error. Alternatively "string".parse() can be used as EsmtpValue implements FromStr.

Trait Implementations

impl AsRef<str> for EsmtpValue[src]

impl Clone for EsmtpValue[src]

impl Debug for EsmtpValue[src]

impl Eq for EsmtpValue[src]

impl FromStr for EsmtpValue[src]

type Err = SyntaxError

The associated error which can be returned from parsing.

impl Hash for EsmtpValue[src]

impl Into<String> for EsmtpValue[src]

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

impl PartialEq<EsmtpValue> for EsmtpValue[src]

impl PartialEq<String> for EsmtpValue[src]

impl PartialEq<str> for EsmtpValue[src]

impl StructuralEq for EsmtpValue[src]

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