#[repr(C)]pub struct PamojaBmp280Measurement {
pub pressure: u32,
pub temperature: u32,
pub pressure_skipped: u8,
pub temperature_skipped: u8,
}Expand description
The uncompensated codes a BMP280 burst read carries.
Fields§
§pressure: u32The 20-bit pressure code.
temperature: u32The 20-bit temperature code.
pressure_skipped: u81 when pressure oversampling was off, so the code carries no reading.
temperature_skipped: u81 when temperature oversampling was off, so the code carries no reading.
Trait Implementations§
Source§impl Clone for PamojaBmp280Measurement
impl Clone for PamojaBmp280Measurement
Source§fn clone(&self) -> PamojaBmp280Measurement
fn clone(&self) -> PamojaBmp280Measurement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PamojaBmp280Measurement
Source§impl Debug for PamojaBmp280Measurement
impl Debug for PamojaBmp280Measurement
impl Eq for PamojaBmp280Measurement
Source§impl From<Measurement> for PamojaBmp280Measurement
impl From<Measurement> for PamojaBmp280Measurement
Source§impl PartialEq for PamojaBmp280Measurement
impl PartialEq for PamojaBmp280Measurement
Source§fn eq(&self, other: &PamojaBmp280Measurement) -> bool
fn eq(&self, other: &PamojaBmp280Measurement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PamojaBmp280Measurement
Auto Trait Implementations§
impl Freeze for PamojaBmp280Measurement
impl RefUnwindSafe for PamojaBmp280Measurement
impl Send for PamojaBmp280Measurement
impl Sync for PamojaBmp280Measurement
impl Unpin for PamojaBmp280Measurement
impl UnsafeUnpin for PamojaBmp280Measurement
impl UnwindSafe for PamojaBmp280Measurement
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