pub enum ExecutionKind {
Full,
Blocked,
Error,
}Expand description
How an explored execution terminated.
Full- nothing more can be added and every thread finished.Blocked- nothing more can be added but some thread is stuck on a blocking receive that never got a message (a maximal consistent prefix).Error- anerrorevent was reached.
Variants§
Trait Implementations§
Source§impl Clone for ExecutionKind
impl Clone for ExecutionKind
Source§fn clone(&self) -> ExecutionKind
fn clone(&self) -> ExecutionKind
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 moreimpl Copy for ExecutionKind
Source§impl Debug for ExecutionKind
impl Debug for ExecutionKind
impl Eq for ExecutionKind
Source§impl PartialEq for ExecutionKind
impl PartialEq for ExecutionKind
impl StructuralPartialEq for ExecutionKind
Auto Trait Implementations§
impl Freeze for ExecutionKind
impl RefUnwindSafe for ExecutionKind
impl Send for ExecutionKind
impl Sync for ExecutionKind
impl Unpin for ExecutionKind
impl UnsafeUnpin for ExecutionKind
impl UnwindSafe for ExecutionKind
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