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