pub struct InsertElement;Trait Implementations§
Source§impl<T, M> Mutation<Vec<T>, VecMutator<T, M>> for InsertElement
impl<T, M> Mutation<Vec<T>, VecMutator<T, M>> for InsertElement
type RandomStep = InsertElementRandomStep
type Step = InsertElementStep<<M as Mutator<T>>::ArbitraryStep>
type Concrete<'a> = ConcreteInsertElement<T>
type Revert = RevertInsertElement
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, _random_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 InsertElement
impl RefUnwindSafe for InsertElement
impl Send for InsertElement
impl Sync for InsertElement
impl Unpin for InsertElement
impl UnwindSafe for InsertElement
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