pub struct VectorMutation { /* private fields */ }Trait Implementations§
Source§impl Default for VectorMutation
impl Default for VectorMutation
Source§impl<T, M> Mutation<Vec<T>, VecMutator<T, M>> for VectorMutation
impl<T, M> Mutation<Vec<T>, VecMutator<T, M>> for VectorMutation
type RandomStep = VectorMutationRandomStep<T, M>
type Step = VectorMutationStep<T, M>
type Concrete<'a> = ConcreteVectorMutation<'a, T, M>
type Revert = RevertVectorMutation<T, M>
fn default_random_step( &self, mutator: &VecMutator<T, M>, value: &Vec<T>, ) -> Option<Self::RandomStep>
fn random<'a>( mutator: &VecMutator<T, M>, value: &Vec<T>, cache: &<VecMutator<T, M> as Mutator<Vec<T>>>::Cache, step: &Self::RandomStep, max_cplx: f64, ) -> Self::Concrete<'a>
fn default_step( &self, mutator: &VecMutator<T, M>, value: &Vec<T>, cache: &<VecMutator<T, M> as Mutator<Vec<T>>>::Cache, ) -> Option<Self::Step>
fn from_step<'a>( mutator: &VecMutator<T, M>, value: &Vec<T>, cache: &<VecMutator<T, M> as Mutator<Vec<T>>>::Cache, step: &'a mut Self::Step, subvalue_provider: &dyn SubValueProvider, max_cplx: f64, ) -> Option<Self::Concrete<'a>>
fn apply<'a>( mutation: Self::Concrete<'a>, mutator: &VecMutator<T, M>, value: &mut Vec<T>, cache: &mut <VecMutator<T, M> as Mutator<Vec<T>>>::Cache, subvalue_provider: &dyn SubValueProvider, max_cplx: f64, ) -> (Self::Revert, f64)
Auto Trait Implementations§
impl Freeze for VectorMutation
impl RefUnwindSafe for VectorMutation
impl Send for VectorMutation
impl Sync for VectorMutation
impl Unpin for VectorMutation
impl UnwindSafe for VectorMutation
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