pub enum FuzzerEvent {
Start,
Stop,
End,
CrashNoInput,
Pulse,
Done,
Replace(usize, usize),
DidReadCorpus,
CaughtSignal(i32),
TestFailure,
None,
}Variants§
Start
Stop
End
CrashNoInput
Pulse
Done
Replace(usize, usize)
DidReadCorpus
CaughtSignal(i32)
TestFailure
None
Trait Implementations§
Source§impl Clone for FuzzerEvent
impl Clone for FuzzerEvent
Source§fn clone(&self) -> FuzzerEvent
fn clone(&self) -> FuzzerEvent
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 moreimpl Copy for FuzzerEvent
Auto Trait Implementations§
impl Freeze for FuzzerEvent
impl RefUnwindSafe for FuzzerEvent
impl Send for FuzzerEvent
impl Sync for FuzzerEvent
impl Unpin for FuzzerEvent
impl UnwindSafe for FuzzerEvent
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