Enum bmp280::Error [] [src]

pub enum Error {
    I2cError(LinuxI2CError),
    IoError(Error),
    Other(()),
}

Errors that all functions could return. Errors will either be from the i2cdev library or the byteorder library.

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<LinuxI2CError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<()> for Error
[src]

Performs the conversion.