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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DriverMode
Source§impl Debug for DriverMode
impl Debug for DriverMode
impl Eq 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 (const: unstable) · 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 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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more