Enum serde_mtproto::error::ErrorKind
[−]
pub enum ErrorKind {
Msg(String),
Io(Error),
FromUtf8(FromUtf8Error),
Ser(SerErrorKind),
De(DeErrorKind),
IntegerCast,
StringTooLong(usize),
ByteSeqTooLong(usize),
SeqTooLong(usize),
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
Io(Error)FromUtf8(FromUtf8Error)Ser(SerErrorKind)De(DeErrorKind)IntegerCastStringTooLong(usize)ByteSeqTooLong(usize)SeqTooLong(usize)Methods
impl ErrorKind
fn description(&self) -> &str
A string describing the error kind.