pub struct ProofStatusTotals {
pub contracts: u32,
pub obligations: u32,
pub falsification_tests: u32,
pub kani_harnesses: u32,
pub lean_proved: u32,
pub bindings_implemented: u32,
pub bindings_total: u32,
}Expand description
Aggregate totals across all contracts.
Fields§
§contracts: u32Total number of contracts analyzed
obligations: u32Sum of proof obligations across all contracts
falsification_tests: u32Sum of falsification tests across all contracts
kani_harnesses: u32Sum of Kani harnesses across all contracts
lean_proved: u32Sum of Lean-proved obligations across all contracts
bindings_implemented: u32Sum of implemented bindings across all contracts
bindings_total: u32Sum of total bindings across all contracts
Trait Implementations§
Source§impl Clone for ProofStatusTotals
impl Clone for ProofStatusTotals
Source§fn clone(&self) -> ProofStatusTotals
fn clone(&self) -> ProofStatusTotals
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 moreSource§impl Debug for ProofStatusTotals
impl Debug for ProofStatusTotals
Source§impl<'de> Deserialize<'de> for ProofStatusTotals
impl<'de> Deserialize<'de> for ProofStatusTotals
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProofStatusTotals
impl RefUnwindSafe for ProofStatusTotals
impl Send for ProofStatusTotals
impl Sync for ProofStatusTotals
impl Unpin for ProofStatusTotals
impl UnsafeUnpin for ProofStatusTotals
impl UnwindSafe for ProofStatusTotals
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