pub enum HardwareMeasurementResult {
MeasuredPass,
MeasuredFail,
NotMeasured,
}Expand description
Whether a physical-provider observation can satisfy the hardware gate.
Variants§
MeasuredPass
A physical adapter was measured and every contract passed.
MeasuredFail
A physical adapter was measured and at least one contract failed.
NotMeasured
No qualifying physical adapter was measured.
Trait Implementations§
Source§impl Clone for HardwareMeasurementResult
impl Clone for HardwareMeasurementResult
Source§fn clone(&self) -> HardwareMeasurementResult
fn clone(&self) -> HardwareMeasurementResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HardwareMeasurementResult
Source§impl Debug for HardwareMeasurementResult
impl Debug for HardwareMeasurementResult
impl Eq for HardwareMeasurementResult
impl StructuralPartialEq for HardwareMeasurementResult
Auto Trait Implementations§
impl Freeze for HardwareMeasurementResult
impl RefUnwindSafe for HardwareMeasurementResult
impl Send for HardwareMeasurementResult
impl Sync for HardwareMeasurementResult
impl Unpin for HardwareMeasurementResult
impl UnsafeUnpin for HardwareMeasurementResult
impl UnwindSafe for HardwareMeasurementResult
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