pub struct CalibrationState {
pub last_calibration: Instant,
pub calibration_accuracy: f64,
pub drift_rate: f64,
pub calibration_schedule: CalibrationSchedule,
pub reference_standards: Vec<ReferenceStandard>,
}Fields§
§last_calibration: Instant§calibration_accuracy: f64§drift_rate: f64§calibration_schedule: CalibrationSchedule§reference_standards: Vec<ReferenceStandard>Implementations§
Trait Implementations§
Source§impl Clone for CalibrationState
impl Clone for CalibrationState
Source§fn clone(&self) -> CalibrationState
fn clone(&self) -> CalibrationState
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 moreAuto Trait Implementations§
impl Freeze for CalibrationState
impl RefUnwindSafe for CalibrationState
impl Send for CalibrationState
impl Sync for CalibrationState
impl Unpin for CalibrationState
impl UnwindSafe for CalibrationState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more