pub enum FindingKind {
Crash,
Hang {
ms: u64,
},
SchemaViolation,
PropertyFailure {
invariant: String,
},
ProtocolError,
StateLeak,
SequenceFailure {
sequence: String,
step_index: usize,
step_call: String,
},
}Variants§
Crash
Hang
SchemaViolation
PropertyFailure
ProtocolError
StateLeak
SequenceFailure
Phase L — a multi-step crate::property::dsl::Sequence
failed at step step_index. Carries enough metadata to point a
human at which step of which sequence broke.
Implementations§
Source§impl FindingKind
impl FindingKind
Trait Implementations§
Source§impl Clone for FindingKind
impl Clone for FindingKind
Source§fn clone(&self) -> FindingKind
fn clone(&self) -> FindingKind
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 FindingKind
impl Debug for FindingKind
Source§impl<'de> Deserialize<'de> for FindingKind
impl<'de> Deserialize<'de> for FindingKind
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 FindingKind
impl RefUnwindSafe for FindingKind
impl Send for FindingKind
impl Sync for FindingKind
impl Unpin for FindingKind
impl UnsafeUnpin for FindingKind
impl UnwindSafe for FindingKind
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