pub struct VerificationStatistics {
pub places: usize,
pub transitions: usize,
pub invariants_found: usize,
pub structural_result: String,
}Expand description
Statistics from the verification run.
Fields§
§places: usize§transitions: usize§invariants_found: usize§structural_result: StringTrait Implementations§
Source§impl Clone for VerificationStatistics
impl Clone for VerificationStatistics
Source§fn clone(&self) -> VerificationStatistics
fn clone(&self) -> VerificationStatistics
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 VerificationStatistics
impl RefUnwindSafe for VerificationStatistics
impl Send for VerificationStatistics
impl Sync for VerificationStatistics
impl Unpin for VerificationStatistics
impl UnsafeUnpin for VerificationStatistics
impl UnwindSafe for VerificationStatistics
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