pub struct Concentrations {
pub pm0_5: f32,
pub pm1_0: f32,
pub pm2_5: f32,
pub pm4_0: f32,
pub pm10_0: f32,
}Expand description
One concentration measurement taken from the SEN66. Use
read_number_concentrations to retrieve it.
Fields§
§pm0_5: f32PM0.5 concentration in particles/cm³
pm1_0: f32PM1.0 concentration in particles/cm³
pm2_5: f32PM2.5 concentration in particles/cm³
pm4_0: f32PM4.0 concentration in particles/cm³
pm10_0: f32PM10.0 concentration in particles/cm³
Trait Implementations§
Source§impl Debug for Concentrations
impl Debug for Concentrations
Source§impl PartialEq for Concentrations
impl PartialEq for Concentrations
Source§impl TryFrom<&[u8]> for Concentrations
impl TryFrom<&[u8]> for Concentrations
impl StructuralPartialEq for Concentrations
Auto Trait Implementations§
impl Freeze for Concentrations
impl RefUnwindSafe for Concentrations
impl Send for Concentrations
impl Sync for Concentrations
impl Unpin for Concentrations
impl UnwindSafe for Concentrations
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more