Struct fuzzcheck_mutators::I32Mutator[][src]

pub struct I32Mutator { /* fields omitted */ }

Trait Implementations

impl Default for I32Mutator[src]

impl Mutator<i32> for I32Mutator[src]

type Cache = ()

type MutationStep = u64

type ArbitraryStep = u64

type UnmutateToken = i32

fn cache_from_value(&self, _value: &i32) -> Self::Cache[src]

Compute the cache for the given value

fn initial_step_from_value(&self, _value: &i32) -> Self::MutationStep[src]

Compute the initial mutation step for the given value

fn max_complexity(&self) -> f64[src]

The maximum complexity of an input of this type

fn min_complexity(&self) -> f64[src]

The minimum complexity of an input of this type

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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.

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.