pub struct MeasurementInstance<R, E> {
pub reference: R,
pub endorsement: E,
}
Fields§
§reference: R
§endorsement: E
Trait Implementations§
Source§impl<R: Clone, E: Clone> Clone for MeasurementInstance<R, E>
impl<R: Clone, E: Clone> Clone for MeasurementInstance<R, E>
Source§fn clone(&self) -> MeasurementInstance<R, E>
fn clone(&self) -> MeasurementInstance<R, E>
Returns a copy 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<R, E> Freeze for MeasurementInstance<R, E>
impl<R, E> RefUnwindSafe for MeasurementInstance<R, E>where
R: RefUnwindSafe,
E: RefUnwindSafe,
impl<R, E> Send for MeasurementInstance<R, E>
impl<R, E> Sync for MeasurementInstance<R, E>
impl<R, E> Unpin for MeasurementInstance<R, E>
impl<R, E> UnwindSafe for MeasurementInstance<R, E>where
R: UnwindSafe,
E: 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