pub enum FuzzFindingKind {
Crash,
Timeout,
OutOfMemory,
}Expand description
Type of finding discovered during a fuzz run.
Variants§
Crash
A crash (panic, segfault, abort).
Timeout
An iteration exceeded the timeout.
OutOfMemory
An iteration exceeded the memory limit.
Trait Implementations§
Source§impl Clone for FuzzFindingKind
impl Clone for FuzzFindingKind
Source§fn clone(&self) -> FuzzFindingKind
fn clone(&self) -> FuzzFindingKind
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 moreSource§impl Debug for FuzzFindingKind
impl Debug for FuzzFindingKind
Source§impl PartialEq for FuzzFindingKind
impl PartialEq for FuzzFindingKind
Source§fn eq(&self, other: &FuzzFindingKind) -> bool
fn eq(&self, other: &FuzzFindingKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FuzzFindingKind
impl Eq for FuzzFindingKind
impl StructuralPartialEq for FuzzFindingKind
Auto Trait Implementations§
impl Freeze for FuzzFindingKind
impl RefUnwindSafe for FuzzFindingKind
impl Send for FuzzFindingKind
impl Sync for FuzzFindingKind
impl Unpin for FuzzFindingKind
impl UnsafeUnpin for FuzzFindingKind
impl UnwindSafe for FuzzFindingKind
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