pub enum FuzzFindingKind {
Crash,
Timeout,
OutOfMemory,
}Expand description
Type of finding discovered during a fuzz run.
Variants§
Crash
A crash (panic, signal, libFuzzer “deadly signal”).
Timeout
libFuzzer reported the input exceeded the per-execution timeout.
OutOfMemory
libFuzzer reported the input exceeded the configured memory limit.
Implementations§
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<'de> Deserialize<'de> for FuzzFindingKind
impl<'de> Deserialize<'de> for FuzzFindingKind
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
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 ==.Source§impl Serialize for FuzzFindingKind
impl Serialize for FuzzFindingKind
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