pub struct AuditReport {
pub equations: usize,
pub obligations: usize,
pub falsification_tests: usize,
pub kani_harnesses: usize,
pub violations: Vec<Violation>,
}Expand description
Audit result summarizing traceability coverage.
Fields§
§equations: usizeTotal equations in the contract.
obligations: usizeTotal proof obligations.
falsification_tests: usizeTotal falsification tests.
kani_harnesses: usizeTotal Kani harnesses.
violations: Vec<Violation>Violations found during audit.
Trait Implementations§
Source§impl Clone for AuditReport
impl Clone for AuditReport
Source§fn clone(&self) -> AuditReport
fn clone(&self) -> AuditReport
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 AuditReport
impl RefUnwindSafe for AuditReport
impl Send for AuditReport
impl Sync for AuditReport
impl Unpin for AuditReport
impl UnsafeUnpin for AuditReport
impl UnwindSafe for AuditReport
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