pub enum TruthStatus {
Observed,
Declared,
Verified,
Enforced,
Attested,
Acknowledged,
Witnessed,
Unknown,
}Expand description
Truth status attached to explanation claims.
Variants§
Observed
A local component directly observed this fact.
Declared
A participant declared this claim.
Verified
A signature, capability, or proof validated for this claim.
Enforced
A named policy controlled this decision.
Attested
A verifier assessed runtime or hardware evidence.
Acknowledged
Another participant signed its view of the event.
Witnessed
An independent service recorded a commitment.
Unknown
No reliable evidence is available.
Trait Implementations§
Source§impl Clone for TruthStatus
impl Clone for TruthStatus
Source§fn clone(&self) -> TruthStatus
fn clone(&self) -> TruthStatus
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 TruthStatus
Source§impl Debug for TruthStatus
impl Debug for TruthStatus
impl Eq for TruthStatus
Source§impl PartialEq for TruthStatus
impl PartialEq for TruthStatus
Source§fn eq(&self, other: &TruthStatus) -> bool
fn eq(&self, other: &TruthStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TruthStatus
Auto Trait Implementations§
impl Freeze for TruthStatus
impl RefUnwindSafe for TruthStatus
impl Send for TruthStatus
impl Sync for TruthStatus
impl Unpin for TruthStatus
impl UnsafeUnpin for TruthStatus
impl UnwindSafe for TruthStatus
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