Enum hprose::io::DecoderError [] [src]

pub enum DecoderError {
    ParserError(ParserError),
    CastError(&'static str, &'static str),
    UnexpectedTag(u8Option<Bytes>),
    ReferenceError,
    ApplicationError(String),
}

A set of errors that can occur decoding byte slice

Variants

Trait Implementations

impl Clone for DecoderError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DecoderError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for DecoderError
[src]

Formats the value using the given formatter.

impl From<ParserError> for DecoderError
[src]

Performs the conversion.

impl Display for DecoderError
[src]

Formats the value using the given formatter. Read more