[][src]Struct sequoia_rfc2822::NameAddrOrOther

pub struct NameAddrOrOther { /* fields omitted */ }

A parsed RFC 2822 name-addr, which also recognizes invalid email addresses.

name-addrs are typically of the form:

First Last (Comment) <email@example.org>

The name and comment are optional, but the comment is only allowed if there is also a name.

Note: this does not recognize bare addresses. That is, the angle brackets are required and the following is not recognized (even as an invalid address) as a name-addr:

email@example.org

This version of the name-addr parser also recognizes invalid email addresses. For instance:

First Last (Comment) <ssh://server.example.net>

will be successfully parsed. In this case, NameAddrOrOther::address() will return the parse error, and the invalid address can be obtained using NameAddrOrOther::other().

Methods

impl NameAddrOrOther[src]

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

Parses a string that allegedly contains an RFC 2822 name-addr with an optionally invalid email address.

pub fn name(&self) -> Option<&str>[src]

Returns the display name.

pub fn comment(&self) -> Option<&str>[src]

Returns the first comment.

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

Returns the address, if any.

If the address is invalid, then the parse error is returned.

pub fn other(&self) -> Option<&str>[src]

Returns the invalid address, if any.

If the address is valid, then this returns None.

Trait Implementations

impl Eq for NameAddrOrOther[src]

impl Clone for NameAddrOrOther[src]

impl PartialEq<NameAddrOrOther> for NameAddrOrOther[src]

impl Debug for NameAddrOrOther[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]