pub struct MeasurementAccuracyRange {
pub range_min: Option<i64>,
pub range_max: Option<i64>,
pub percent_max: Option<u8>,
pub percent_min: Option<u8>,
pub percent_typical: Option<u8>,
pub fixed_max: Option<u64>,
pub fixed_min: Option<u64>,
pub fixed_typical: Option<u64>,
}Fields§
§range_min: Option<i64>§range_max: Option<i64>§percent_max: Option<u8>§percent_min: Option<u8>§percent_typical: Option<u8>§fixed_max: Option<u64>§fixed_min: Option<u64>§fixed_typical: Option<u64>Trait Implementations§
Source§impl Debug for MeasurementAccuracyRange
impl Debug for MeasurementAccuracyRange
Auto Trait Implementations§
impl Freeze for MeasurementAccuracyRange
impl RefUnwindSafe for MeasurementAccuracyRange
impl Send for MeasurementAccuracyRange
impl Sync for MeasurementAccuracyRange
impl Unpin for MeasurementAccuracyRange
impl UnwindSafe for MeasurementAccuracyRange
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