Error

Trait Error 

pub trait Error: Debug {
    // Required method
    fn kind(&self) -> ErrorKind;
}
Expand description

Error trait.

This trait allows generic code to do limited inspecting of errors, to react differently to different kinds.

Required Methods§

fn kind(&self) -> ErrorKind

Get the kind of this error.

Implementations on Foreign Types§

§

impl Error for Infallible

§

fn kind(&self) -> ErrorKind

Implementors§

§

impl Error for ErrorKind

§

impl Error for SliceWriteError