pub struct VerificationBundle {
pub extension_id: String,
pub structural: StructuralVerdict,
pub capability_proof: CapabilityProofReport,
pub semantic_proof: SemanticParityReport,
pub conformance: ConformanceReplayReport,
pub checksum_manifest: GoldenChecksumManifest,
}Expand description
Unified verification evidence bundle.
Collects all proof artifacts from LISR-5 into a single bundle that serves as the activation gate. A repair candidate cannot be activated unless ALL proofs pass.
Fields§
§extension_id: StringExtension identity.
structural: StructuralVerdictStructural validation (LISR-5.1).
capability_proof: CapabilityProofReportCapability monotonicity proof (LISR-5.2).
semantic_proof: SemanticParityReportSemantic parity proof (LISR-5.3).
conformance: ConformanceReplayReportConformance replay (LISR-5.4).
checksum_manifest: GoldenChecksumManifestGolden checksum manifest (LISR-5.4).
Implementations§
Source§impl VerificationBundle
impl VerificationBundle
Sourcepub const fn is_verified(&self) -> bool
pub const fn is_verified(&self) -> bool
True if ALL proofs pass — the activation gate.
Sourcepub fn failure_reasons(&self) -> Vec<String>
pub fn failure_reasons(&self) -> Vec<String>
Collect failure reasons for logging.
Trait Implementations§
Source§impl Clone for VerificationBundle
impl Clone for VerificationBundle
Source§fn clone(&self) -> VerificationBundle
fn clone(&self) -> VerificationBundle
Returns a duplicate 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 Freeze for VerificationBundle
impl RefUnwindSafe for VerificationBundle
impl Send for VerificationBundle
impl Sync for VerificationBundle
impl Unpin for VerificationBundle
impl UnsafeUnpin for VerificationBundle
impl UnwindSafe for VerificationBundle
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more