Enum email_format::rfc5322::error::ParseError
[−]
[src]
pub enum ParseError {
Eof(&'static str),
NotFound(&'static str),
Expected(Vec<u8>),
ExpectedType(&'static str),
Io(IoError),
InvalidBodyChar(u8),
LineTooLong(usize),
TrailingInput(&'static str, usize),
InternalError,
Parse(&'static str, Box<ParseError>),
}Variants
Eof(&'static str)NotFound(&'static str)Expected(Vec<u8>)ExpectedType(&'static str)Io(IoError)InvalidBodyChar(u8)LineTooLong(usize)TrailingInput(&'static str, usize)InternalErrorParse(&'static str, Box<ParseError>)Trait Implementations
impl Display for ParseError[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more