Enum rocketchat_hooks::ErrorKind
[−]
pub enum ErrorKind {
Msg(String),
Io(Error),
Uri(UriError),
Http(Error),
Json(Error),
Status(StatusCode),
// some variants omitted
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
Io(Error)Uri(UriError)Http(Error)Json(Error)Status(StatusCode)
Methods
impl ErrorKind
fn description(&self) -> &str
A string describing the error kind.