pub struct VerificationResult {
pub verdict: Verdict,
pub report: String,
pub invariants: Vec<PInvariant>,
pub discovered_invariants: Vec<String>,
pub counterexample_trace: Vec<MarkingState>,
pub counterexample_transitions: Vec<String>,
pub elapsed_ms: u64,
pub statistics: VerificationStatistics,
}Expand description
Result of an SMT verification query.
Fields§
§verdict: Verdict§report: String§invariants: Vec<PInvariant>§discovered_invariants: Vec<String>§counterexample_trace: Vec<MarkingState>§counterexample_transitions: Vec<String>§elapsed_ms: u64§statistics: VerificationStatisticsImplementations§
Trait Implementations§
Source§impl Clone for VerificationResult
impl Clone for VerificationResult
Source§fn clone(&self) -> VerificationResult
fn clone(&self) -> VerificationResult
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 VerificationResult
impl RefUnwindSafe for VerificationResult
impl Send for VerificationResult
impl Sync for VerificationResult
impl Unpin for VerificationResult
impl UnsafeUnpin for VerificationResult
impl UnwindSafe for VerificationResult
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