Struct fuzzcheck_mutators::U8Mutator[][src]

pub struct U8Mutator { /* fields omitted */ }

Trait Implementations

impl Default for U8Mutator[src]

impl Mutator<u8> for U8Mutator[src]

type Cache = ()

type MutationStep = u64

type ArbitraryStep = u64

type UnmutateToken = u8

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

Compute the cache for the given value

fn initial_step_from_value(&self, _value: &u8) -> 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.