pub struct IndexedMeasurement<Value> {
pub index: Index,
pub measurement: Measurement<Value>,
}Expand description
Measurement of a single register
Fields§
§index: Index§measurement: Measurement<Value>Trait Implementations§
Source§impl<Value: Clone> Clone for IndexedMeasurement<Value>
impl<Value: Clone> Clone for IndexedMeasurement<Value>
Source§fn clone(&self) -> IndexedMeasurement<Value>
fn clone(&self) -> IndexedMeasurement<Value>
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<Value: Debug> Debug for IndexedMeasurement<Value>
impl<Value: Debug> Debug for IndexedMeasurement<Value>
Source§impl<Value: PartialEq> PartialEq for IndexedMeasurement<Value>
impl<Value: PartialEq> PartialEq for IndexedMeasurement<Value>
impl<Value: Eq> Eq for IndexedMeasurement<Value>
impl<Value> StructuralPartialEq for IndexedMeasurement<Value>
Auto Trait Implementations§
impl<Value> Freeze for IndexedMeasurement<Value>where
Value: Freeze,
impl<Value> RefUnwindSafe for IndexedMeasurement<Value>where
Value: RefUnwindSafe,
impl<Value> Send for IndexedMeasurement<Value>where
Value: Send,
impl<Value> Sync for IndexedMeasurement<Value>where
Value: Sync,
impl<Value> Unpin for IndexedMeasurement<Value>where
Value: Unpin,
impl<Value> UnwindSafe for IndexedMeasurement<Value>where
Value: UnwindSafe,
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