pub enum DriverMode {
Direct,
Forced,
}๐Deprecated: Driver mode should no longer used by generator implementations
Expand description
Byte exhaustion strategy for the driver
Variantsยง
Direct
๐Deprecated: Driver mode should no longer used by generator implementations
When the driver bytes are exhausted, the driver will fail fill input bytes. This is useful for fuzz engines that want accurate mapping of inputs to coverage.
Forced
๐Deprecated: Driver mode should no longer used by generator implementations
When the driver bytes are exhausted, the driver will continue to fill input bytes with 0. This is useful for engines that want to maximize the amount of time spent executing tests.
Trait Implementationsยง
Sourceยงimpl Clone for DriverMode
impl Clone for DriverMode
Sourceยงfn clone(&self) -> DriverMode
fn clone(&self) -> DriverMode
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 DriverMode
impl Debug for DriverMode
Sourceยงimpl Ord for DriverMode
impl Ord for DriverMode
Sourceยงfn cmp(&self, other: &DriverMode) -> Ordering
fn cmp(&self, other: &DriverMode) -> Ordering
1.21.0 ยท Sourceยงfn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Sourceยงimpl PartialEq for DriverMode
impl PartialEq for DriverMode
Sourceยงimpl PartialOrd for DriverMode
impl PartialOrd for DriverMode
impl Copy for DriverMode
impl Eq for DriverMode
impl StructuralPartialEq for DriverMode
Auto Trait Implementationsยง
impl Freeze for DriverMode
impl RefUnwindSafe for DriverMode
impl Send for DriverMode
impl Sync for DriverMode
impl Unpin for DriverMode
impl UnwindSafe for DriverMode
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