Error

Enum Error 

Source
pub enum Error<I2cE>
where I2cE: Error,
{ I2c(I2cE), ChipNotDetected, InvalidProduct, FeatureNotSupported, BadCrc, }
Expand description

All possible errors generated when using the Sgp30 struct

Variants§

§

I2c(I2cE)

I²C bus error

§

ChipNotDetected

The SGP30 chip has not been detected

§

InvalidProduct

The detected chip is an invalid product, either it has an invalid product type, or an invalid product version

§

FeatureNotSupported

The operation that is asked for is not supported by this version of the sensor.

§

BadCrc

The computed CRC and the one sent by the device mismatch

Trait Implementations§

Source§

impl<I2cE> Debug for Error<I2cE>
where I2cE: Error + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<I2cE> From<I2cE> for Error<I2cE>
where I2cE: Error,

Source§

fn from(value: I2cE) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<I2cE> Freeze for Error<I2cE>
where I2cE: Freeze,

§

impl<I2cE> RefUnwindSafe for Error<I2cE>
where I2cE: RefUnwindSafe,

§

impl<I2cE> Send for Error<I2cE>
where I2cE: Send,

§

impl<I2cE> Sync for Error<I2cE>
where I2cE: Sync,

§

impl<I2cE> Unpin for Error<I2cE>
where I2cE: Unpin,

§

impl<I2cE> UnwindSafe for Error<I2cE>
where I2cE: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.