Enum serde_cbor::error::Category
[−]
[src]
pub enum Category { Io, Syntax, Data, Eof, }
Categorizes the cause of a serde_cbor::Error
.
Variants
Io
The error was caused by a failure to read or write bytes on an IO stream.
Syntax
The error was caused by input that was not syntactically valid CBOR.
Data
The error was caused by input data that was semantically correct.
Eof
The error was causeed by prematurely reaching the end of the input data.