[][src]Struct sequoia_rfc2822::AddrSpecOrOther

pub struct AddrSpecOrOther { /* fields omitted */ }

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

For this parser to recognize an email address, the input must not include angle brackets. That is, this parser recognizes addresses of the form:

email@example.org

But not:

<email@example.org>

When parsing valid email addresses, RFC 2822 comments are ignored.

If the input is not a valid email address, no error is returned by AddrSpecOrOther::parse() (unlike AddrSpec::parse()). Instead, the invalid email address can be obtained using AddrSpecOrOther::other(). Consider:

ssh://server.example.net

In this case, AddrSpecOrOther::other() returns ssh://server.example.net. The parse error can still be obtained using AddrSpecOrOther::address().

Methods

impl AddrSpecOrOther[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 or other.

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 AddrSpecOrOther[src]

impl Clone for AddrSpecOrOther[src]

impl PartialEq<AddrSpecOrOther> for AddrSpecOrOther[src]

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