pub struct AltimeterData {
pub pressure: f32,
pub altitude: f32,
pub temperature: f32,
pub timestamp_ms: u32,
}Fields§
§pressure: f32§altitude: f32§temperature: f32§timestamp_ms: u32Trait Implementations§
Source§impl Clone for AltimeterData
impl Clone for AltimeterData
Source§fn clone(&self) -> AltimeterData
fn clone(&self) -> AltimeterData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Format for AltimeterData
impl Format for AltimeterData
Source§impl From<AltimeterData> for AltimeterTx
impl From<AltimeterData> for AltimeterTx
Source§fn from(d: AltimeterData) -> Self
fn from(d: AltimeterData) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AltimeterData
impl RefUnwindSafe for AltimeterData
impl Send for AltimeterData
impl Sync for AltimeterData
impl Unpin for AltimeterData
impl UnsafeUnpin for AltimeterData
impl UnwindSafe for AltimeterData
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