[][src]Struct sequoia_rfc2822::AddrSpec

pub struct AddrSpec { /* fields omitted */ }

A parsed RFC 2822 addr-spec.

The address must not include angle brackets. That is, this parser recognizes addresses of the form:

email@example.org

But not:

<email@example.org>

RFC 2822 comments are ignored.

Methods

impl AddrSpec[src]

pub fn parse<S>(input: S) -> Result<Self> where
    S: AsRef<str>, 
[src]

Parses a string that allegedly contains an RFC 2822 addr-spec.

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

Returns the address.

Trait Implementations

impl Eq for AddrSpec[src]

impl Clone for AddrSpec[src]

impl PartialEq<AddrSpec> for AddrSpec[src]

impl Debug for AddrSpec[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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