[][src]Struct mh_zx_driver::RawMeasurement

pub struct RawMeasurement {
    pub adc_temp: u16,
    pub co2: u16,
    pub adc_min_light: u16,
}

A struct representing raw CO2 data returned by sensor as a response to the READ_RAW_CO2 command.

Fields

adc_temp: u16co2: u16adc_min_light: u16

Trait Implementations

impl TryFrom<Packet> for RawMeasurement[src]

type Error = InvalidResponse

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.