pub struct PmValues {
pub mass_pm1p0: f32,
pub mass_pm2p5: f32,
pub mass_pm4p0: f32,
pub mass_pm10p0: f32,
pub number_pm0p5: f32,
pub number_pm1p0: f32,
pub number_pm2p5: f32,
pub number_pm4p0: f32,
pub number_pm10p0: f32,
pub typical_particle_size: f32,
}Expand description
Extended PM values including number concentrations and typical particle size.
Fields§
§mass_pm1p0: f32Mass concentration PM1.0 in µg/m³
mass_pm2p5: f32Mass concentration PM2.5 in µg/m³
mass_pm4p0: f32Mass concentration PM4.0 in µg/m³
mass_pm10p0: f32Mass concentration PM10.0 in µg/m³
number_pm0p5: f32Number concentration PM0.5 in #/cm³
number_pm1p0: f32Number concentration PM1.0 in #/cm³
number_pm2p5: f32Number concentration PM2.5 in #/cm³
number_pm4p0: f32Number concentration PM4.0 in #/cm³
number_pm10p0: f32Number concentration PM10.0 in #/cm³
typical_particle_size: f32Typical particle size in µm
Trait Implementations§
impl Copy for PmValues
impl StructuralPartialEq for PmValues
Auto Trait Implementations§
impl Freeze for PmValues
impl RefUnwindSafe for PmValues
impl Send for PmValues
impl Sync for PmValues
impl Unpin for PmValues
impl UnsafeUnpin for PmValues
impl UnwindSafe for PmValues
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