Enum sensehat::SenseHatError[][src]

pub enum SenseHatError {
    NotReady,
    GenericError,
    I2CError(LinuxI2CError),
    LSM9DS1Error(Error),
    ScreenError,
    CharacterError(FromUtf16Error),
}

Errors that this crate can return

Variants

Trait Implementations

impl Debug for SenseHatError
[src]

Formats the value using the given formatter. Read more

impl From<LinuxI2CError> for SenseHatError
[src]

Performs the conversion.

impl From<FromUtf16Error> for SenseHatError
[src]

Performs the conversion.

Auto Trait Implementations