pub struct BarometerData {
pub temprature: u32,
pub pressure: u32,
}Expand description
Raw data values that come from a single sample of the barometer
Fields§
§temprature: u32§pressure: u32Trait Implementations§
Source§impl<'de> Deserialize<'de> for BarometerData
impl<'de> Deserialize<'de> for BarometerData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BarometerData
impl RefUnwindSafe for BarometerData
impl Send for BarometerData
impl Sync for BarometerData
impl Unpin for BarometerData
impl UnwindSafe for BarometerData
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