pub struct ObligationStatus {
pub property: String,
pub obligation_type: String,
pub l2_tested: bool,
pub l3_kani: bool,
pub l4_lean: bool,
pub max_level: ProofLevel,
}Expand description
Verification status for a single obligation across all proof levels.
Fields§
§property: StringHuman-readable obligation property name
obligation_type: StringObligation type (invariant, bound, equivalence, etc.)
l2_tested: boolWhether at least one falsification test covers this obligation
l3_kani: boolWhether at least one Kani harness covers this obligation
l4_lean: boolWhether the obligation has a Lean proof with status “proved”
max_level: ProofLevelHighest achieved level for this specific obligation
Trait Implementations§
Source§impl Clone for ObligationStatus
impl Clone for ObligationStatus
Source§fn clone(&self) -> ObligationStatus
fn clone(&self) -> ObligationStatus
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 ObligationStatus
impl Debug for ObligationStatus
Source§impl<'de> Deserialize<'de> for ObligationStatus
impl<'de> Deserialize<'de> for ObligationStatus
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 ObligationStatus
impl RefUnwindSafe for ObligationStatus
impl Send for ObligationStatus
impl Sync for ObligationStatus
impl Unpin for ObligationStatus
impl UnsafeUnpin for ObligationStatus
impl UnwindSafe for ObligationStatus
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