Enum email_format::rfc5322::error::ParseError [] [src]

pub enum ParseError {
    Eof,
    NotFound,
    Expected(Vec<u8>),
    ExpectedType(&'static str),
    Io(IoError),
    InvalidBodyChar(u8),
    LineTooLong(usize),
}

Variants

Trait Implementations

impl Display for ParseError
[src]

Formats the value using the given formatter.

impl Debug for ParseError
[src]

Formats the value using the given formatter.

impl StdError for ParseError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more