Enum byte_sequence::ErrorKind
[−]
pub enum ErrorKind {
Msg(String),
InvalidKeyLen(String, &'static str),
InvalidKeyChars(String, &'static str),
// some variants omitted
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
InvalidKeyLen(String, &'static str)InvalidKeyChars(String, &'static str)
Methods
impl ErrorKind
fn description(&self) -> &str
A string describing the error kind.