pub struct BaroData {
pub agl: f32,
pub pressure: f32,
pub timestamp: MillisDuration<u64>,
}Expand description
Barometric data picked up at a specific timestamp
Fields§
§agl: f32Altitude above ground in meters
pressure: f32Pressure in Pa
timestamp: MillisDuration<u64>Timestamp in ms
Trait Implementations§
impl Copy for BaroData
Auto Trait Implementations§
impl Freeze for BaroData
impl RefUnwindSafe for BaroData
impl Send for BaroData
impl Sync for BaroData
impl Unpin for BaroData
impl UnwindSafe for BaroData
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