pub struct AtlasScientificResultData {
pub value: f32,
invalid: bool,
measurement_instant: Instant,
}Fields§
§value: f32The measurement value
invalid: boolBit indicating if the value is valid or not
measurement_instant: InstantThe instant when the measurement result was recorded
Implementations§
Trait Implementations§
Source§impl Clone for AtlasScientificResultData
impl Clone for AtlasScientificResultData
Source§fn clone(&self) -> AtlasScientificResultData
fn clone(&self) -> AtlasScientificResultData
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 Debug for AtlasScientificResultData
impl Debug for AtlasScientificResultData
Auto Trait Implementations§
impl Freeze for AtlasScientificResultData
impl RefUnwindSafe for AtlasScientificResultData
impl Send for AtlasScientificResultData
impl Sync for AtlasScientificResultData
impl Unpin for AtlasScientificResultData
impl UnwindSafe for AtlasScientificResultData
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