pub enum VerificationState {
Verifiable,
Unverifiable,
}Expand description
Whether a frame’s content can be independently revalidated — it carries a
content_digest a provider can answer context/verify against. Recorded per
included frame in the CompositionAudit so a reader knows which quoted
evidence is anchored to a checkable hash and which is trust-on-first-use.
Variants§
Verifiable
Carries a content_digest; revalidatable via context/verify (§4).
Unverifiable
No content_digest; a host re-queries rather than trusting it stale.
Trait Implementations§
Source§impl Clone for VerificationState
impl Clone for VerificationState
Source§fn clone(&self) -> VerificationState
fn clone(&self) -> VerificationState
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 VerificationState
Source§impl Debug for VerificationState
impl Debug for VerificationState
impl Eq for VerificationState
Source§impl PartialEq for VerificationState
impl PartialEq for VerificationState
impl StructuralPartialEq for VerificationState
Auto Trait Implementations§
impl Freeze for VerificationState
impl RefUnwindSafe for VerificationState
impl Send for VerificationState
impl Sync for VerificationState
impl Unpin for VerificationState
impl UnsafeUnpin for VerificationState
impl UnwindSafe for VerificationState
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