Enum ilp_packet::errors::ParseError[]

pub enum ParseError {
    Io(Error),
    Utf8(Utf8Error),
    FromUtf8(FromUtf8Error),
    Chrono(ParseError),
    WrongType(&'static str),
    InvalidPacket(&'static str),
    Other(Box<Error>),
}

Variants

Trait Implementations

impl Debug for ParseError
[src]

Formats the value using the given formatter. Read more

impl Display for ParseError

Formats the value using the given formatter. Read more

impl Error for ParseError

This method is soft-deprecated. Read more

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

impl From<Error> for ParseError

Performs the conversion.

impl From<Utf8Error> for ParseError

Performs the conversion.

impl From<FromUtf8Error> for ParseError

Performs the conversion.

impl From<ParseError> for ParseError

Performs the conversion.

Auto Trait Implementations

impl !Send for ParseError

impl !Sync for ParseError