pub struct Verdict {
pub label: String,
pub accept: bool,
pub coverage: CoverageReport,
}Expand description
The graduated verification outcome: the objective coverage report, the scheme’s classification label, and this verifier’s acceptance decision — the triple every surface serializes.
Fields§
§label: StringThe scheme’s classification label.
accept: boolThe verifier’s acceptance decision.
coverage: CoverageReportThe objective coverage report.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Verdict
impl RefUnwindSafe for Verdict
impl Send for Verdict
impl Sync for Verdict
impl Unpin for Verdict
impl UnsafeUnpin for Verdict
impl UnwindSafe for Verdict
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