pub struct KernelClassSummary {
pub label: String,
pub description: String,
pub contract_stems: Vec<String>,
pub min_proof_level: ProofLevel,
pub all_bound: bool,
}Expand description
Summary of proof status for a kernel equivalence class.
Fields§
§label: StringKernel class identifier (A through E)
description: StringHuman-readable description of the kernel combination
contract_stems: Vec<String>Contract stems belonging to this class
min_proof_level: ProofLevelLowest proof level among class members
all_bound: boolWhether all class members have full binding coverage
Trait Implementations§
Source§impl Clone for KernelClassSummary
impl Clone for KernelClassSummary
Source§fn clone(&self) -> KernelClassSummary
fn clone(&self) -> KernelClassSummary
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 moreSource§impl Debug for KernelClassSummary
impl Debug for KernelClassSummary
Source§impl<'de> Deserialize<'de> for KernelClassSummary
impl<'de> Deserialize<'de> for KernelClassSummary
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 KernelClassSummary
impl RefUnwindSafe for KernelClassSummary
impl Send for KernelClassSummary
impl Sync for KernelClassSummary
impl Unpin for KernelClassSummary
impl UnsafeUnpin for KernelClassSummary
impl UnwindSafe for KernelClassSummary
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