Enum dazeus::Error [] [src]

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

Variants

JsonParserError(JsonParserError)IoError(IoError)Utf8Error(Utf8Error)InvalidJsonError(InvalidJsonError)ReceiveError(ReceiveError)

Trait Implementations

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

fn from(err: IoError) -> Error

Performs the conversion.

impl From<Utf8Error> for Error
[src]

fn from(err: Utf8Error) -> Error

Performs the conversion.

impl From<JsonParserError> for Error
[src]

fn from(err: JsonParserError) -> Error

Performs the conversion.

impl From<InvalidJsonError> for Error
[src]

fn from(err: InvalidJsonError) -> Error

Performs the conversion.

impl From<ReceiveError> for Error
[src]

fn from(err: ReceiveError) -> Error

Performs the conversion.

impl Display for Error
[src]

fn fmt(&self, f: &mut Formatter) -> Result<()FmtError>

Formats the value using the given formatter.