pub enum ErrorKind {
Msg(String),
UnexpectedByteInDecNum(u8),
UnexpectedEofInDecNum,
UnexpectedEof,
UnexpectedEofInDirectory,
NoRecordTerminator,
FieldTooLarge(Tag),
RecordTooLarge(usize),
RecordTooShort(usize),
UnexpectedSubfieldEnd,
}Variants
Msg(String)UnexpectedByteInDecNum(u8)UnexpectedEofInDecNumUnexpectedEofUnexpectedEofInDirectoryNoRecordTerminatorFieldTooLarge(Tag)RecordTooLarge(usize)RecordTooShort(usize)UnexpectedSubfieldEndMethods
Trait Implementations
Formats the value using the given formatter.
Formats the value using the given formatter.