Skip to main content

Error

Trait Error 

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

I2C error.

Required Methods§

Source

fn kind(&self) -> ErrorKind

Convert error to a generic I2C error kind.

By using this method, I2C errors freely defined by HAL implementations can be converted to a set of generic I2C errors upon which generic code can act.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Error for Infallible

Source§

fn kind(&self) -> ErrorKind

Implementors§