pub struct NormalMeasurement {
pub mode: Mode,
pub is_holded: bool,
pub is_auto_range: bool,
pub range: Range,
pub main: Value,
pub aux1: Option<Value>,
pub aux2: Option<Value>,
pub fast: Option<Value>,
}
Fields§
§mode: Mode
§is_holded: bool
§is_auto_range: bool
§range: Range
§main: Value
§aux1: Option<Value>
§aux2: Option<Value>
§fast: Option<Value>
Trait Implementations§
Source§impl Clone for NormalMeasurement
impl Clone for NormalMeasurement
Source§fn clone(&self) -> NormalMeasurement
fn clone(&self) -> NormalMeasurement
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 NormalMeasurement
impl RefUnwindSafe for NormalMeasurement
impl Send for NormalMeasurement
impl Sync for NormalMeasurement
impl Unpin for NormalMeasurement
impl UnwindSafe for NormalMeasurement
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