Struct lain::mutator::Mutator[][src]

pub struct Mutator<R: Rng> {
    pub rng: R,
    // some fields omitted
}
Expand description

Object which provides helper routines for mutating data structures and RNG management.

Fields

rng: R

Implementations

impl<R: Rng> Mutator<R>[src]

pub fn new(rng: R) -> Mutator<R>[src]

pub fn get_corpus_state(&self) -> CorpusFuzzingState[src]

pub fn set_corpus_state(&mut self, state: CorpusFuzzingState)[src]

pub fn gen<T: 'static>(&mut self) -> T where
    T: NewFuzzed
[src]

Generates a random choice of the given type

pub fn mutate<T>(&mut self, num: &mut T) where
    T: BitXor<Output = T> + Add<Output = T> + Sub<Output = T> + NumCast + Bounded + Copy + WrappingAdd<Output = T> + WrappingSub<Output = T> + DangerousNumber<T> + Debug
[src]

Mutates a number after randomly selecting a mutation strategy (see [MutatorOperation] for a list of strategies) If a min/max is specified then a new number in this range is chosen instead of performing a bit/arithmetic mutation

pub fn gen_range<T, B1>(&mut self, min: B1, max: B1) -> T where
    T: SampleUniform + Display,
    B1: SampleBorrow<T> + Display + Add + Mul + NumCast + Sub + PartialEq + PartialOrd
[src]

Generates a number in the range from [min, max) (note: non-inclusive). Panics if min >= max.

pub fn gen_weighted_range<T, B1>(
    &mut self,
    min: B1,
    max: B1,
    weighted: Weighted
) -> T where
    T: SampleUniform + Display + NumCast,
    B1: SampleBorrow<T> + Display + Debug + Add<Output = B1> + Mul<Output = B1> + NumCast + Sub<Output = B1> + PartialEq + PartialOrd + Copy + Div<Output = B1>, 
[src]

Generates a number weighted to one end of the interval

pub fn should_early_bail_mutation(&self) -> bool[src]

Helper function for quitting the recursive mutation early if the target field has already been mutated.

pub fn gen_chance(&mut self, chance_percentage: f64) -> bool[src]

Returns a boolean value indicating whether or not the chance event occurred

pub fn random_flags(&mut self)[src]

Client code should call this to signal to the mutator that a new fuzzer iteration is beginning and that the mutator should reset internal state.

pub fn rng_mut(&mut self) -> &mut R[src]

Trait Implementations

impl<R: Debug + Rng> Debug for Mutator<R>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<R> RefUnwindSafe for Mutator<R> where
    R: RefUnwindSafe

impl<R> Send for Mutator<R> where
    R: Send

impl<R> Sync for Mutator<R> where
    R: Sync

impl<R> Unpin for Mutator<R> where
    R: Unpin

impl<R> UnwindSafe for Mutator<R> where
    R: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> Fixup for T[src]

pub default fn fixup<R>(&mut Self, &mut Mutator<R>) where
    R: Rng
[src]

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V

impl<T> VariableSizeObject for T[src]

pub default fn is_variable_size() -> bool[src]