[][src]Enum mailparse::MailAddr

pub enum MailAddr {
    Group(GroupInfo),
    Single(SingleInfo),
}

An abstraction over the two different kinds of top-level addresses allowed in email headers. Group addresses have a name and a list of mailboxes. Single addresses are just a mailbox. Each mailbox consists of what you would consider an email address (e.g. foo@bar.com) and optionally a display name ("Foo Bar"). Groups are represented in email headers with colons and semicolons, e.g. To: my-peeps: foo@peeps.org, bar@peeps.org;

Variants

Group(GroupInfo)
Single(SingleInfo)

Trait Implementations

impl Clone for MailAddr[src]

impl Debug for MailAddr[src]

impl PartialEq<MailAddr> for MailAddr[src]

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