Enum dazeus::Error [] [src]

pub enum Error {
    JsonParserError(JsonParserError),
    IoError(IoError),
    Utf8Error(Utf8Error),
    InvalidJsonError(InvalidJsonError),
    ReceiveError(ReceiveError),
}

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

Performs the conversion.

impl From<Utf8Error> for Error
[src]

Performs the conversion.

impl From<JsonParserError> for Error
[src]

Performs the conversion.

impl From<InvalidJsonError> for Error
[src]

Performs the conversion.

impl From<ReceiveError> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more