pub struct AltimeterTx {
pub pressure: f32,
pub altitude: f32,
pub temperature: f32,
}Fields§
§pressure: f32§altitude: f32§temperature: f32Trait Implementations§
Source§impl Clone for AltimeterTx
impl Clone for AltimeterTx
Source§fn clone(&self) -> AltimeterTx
fn clone(&self) -> AltimeterTx
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 AltimeterTx
impl Format for AltimeterTx
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 AltimeterTx
impl RefUnwindSafe for AltimeterTx
impl Send for AltimeterTx
impl Sync for AltimeterTx
impl Unpin for AltimeterTx
impl UnsafeUnpin for AltimeterTx
impl UnwindSafe for AltimeterTx
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