pub enum AssuranceLevel {
Recorded,
Observed,
Isolated,
IndependentlyReproduced,
}Expand description
Strength of the environment in which an observation was made.
Variants§
Recorded
A record exists, without an asserted runtime observation boundary.
Observed
The Proofborne runtime directly observed the evidence.
Isolated
The observation was produced inside an isolated execution boundary.
IndependentlyReproduced
A separate runner independently reproduced the observation.
Trait Implementations§
Source§impl Clone for AssuranceLevel
impl Clone for AssuranceLevel
Source§fn clone(&self) -> AssuranceLevel
fn clone(&self) -> AssuranceLevel
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 AssuranceLevel
Source§impl Debug for AssuranceLevel
impl Debug for AssuranceLevel
Source§impl Default for AssuranceLevel
impl Default for AssuranceLevel
Source§fn default() -> AssuranceLevel
fn default() -> AssuranceLevel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssuranceLevel
impl<'de> Deserialize<'de> for AssuranceLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AssuranceLevel
Source§impl Ord for AssuranceLevel
impl Ord for AssuranceLevel
Source§fn cmp(&self, other: &AssuranceLevel) -> Ordering
fn cmp(&self, other: &AssuranceLevel) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AssuranceLevel
impl PartialEq for AssuranceLevel
Source§impl PartialOrd for AssuranceLevel
impl PartialOrd for AssuranceLevel
Source§impl Serialize for AssuranceLevel
impl Serialize for AssuranceLevel
impl StructuralPartialEq for AssuranceLevel
Auto Trait Implementations§
impl Freeze for AssuranceLevel
impl RefUnwindSafe for AssuranceLevel
impl Send for AssuranceLevel
impl Sync for AssuranceLevel
impl Unpin for AssuranceLevel
impl UnsafeUnpin for AssuranceLevel
impl UnwindSafe for AssuranceLevel
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