Enum serde_cbor::error::Category [] [src]

pub enum Category {
    Io,
    Syntax,
    Data,
    Eof,
}

Categorizes the cause of a serde_cbor::Error.

Variants

The error was caused by a failure to read or write bytes on an IO stream.

The error was caused by input that was not syntactically valid CBOR.

The error was caused by input data that was semantically correct.

The error was causeed by prematurely reaching the end of the input data.