Enum probor::DecodeError
[−]
[src]
pub enum DecodeError {
AbsentField(&'static str),
WrongArrayLength(usize),
DuplicateKey,
UnexpectedNull,
WrongType(&'static str, DecodeError),
WrongValue(&'static str),
BadFieldValue(&'static str, Box<DecodeError>),
BadArrayElement(usize, Box<DecodeError>),
SkippingError(DecodeError),
}Variants
AbsentField(&'static str)WrongArrayLength(usize)DuplicateKeyUnexpectedNullWrongType(&'static str, DecodeError)WrongValue(&'static str)BadFieldValue(&'static str, Box<DecodeError>)BadArrayElement(usize, Box<DecodeError>)SkippingError(DecodeError)Trait Implementations
impl Debug for DecodeError[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Display for DecodeError[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.