pub enum Error<E> {
CompensationFailed,
Bus(E),
InvalidData,
NoCalibrationData,
UnsupportedChip,
Delay,
}Expand description
BME280 errors
Variants
CompensationFailed
Failed to compensate a raw measurement
Bus(E)
I²C or SPI bus error
InvalidData
Failed to parse sensor data
NoCalibrationData
No calibration data is available (probably forgot to call or check BME280::init for failure)
UnsupportedChip
Chip ID doesn’t match expected value
Delay
Delay error
Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for Error<E> where
E: RefUnwindSafe,
impl<E> Send for Error<E> where
E: Send,
impl<E> Sync for Error<E> where
E: Sync,
impl<E> Unpin for Error<E> where
E: Unpin,
impl<E> UnwindSafe for Error<E> where
E: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more