pub struct PacketCrossoverInsertMutator<P, S> where
P: HasCrossoverInsertMutation<S> + Clone,
S: HasRand + HasMaxSize, { /* private fields */ }Expand description
Like libafls CrossoverInsertMutator
but for two packets in one seed.
P denotes the type of an individual packet that MUST implement HasCrossoverInsertMutation.
Implementations
sourceimpl<P, S> PacketCrossoverInsertMutator<P, S> where
P: HasCrossoverInsertMutation<S> + Clone,
S: HasRand + HasMaxSize,
impl<P, S> PacketCrossoverInsertMutator<P, S> where
P: HasCrossoverInsertMutation<S> + Clone,
S: HasRand + HasMaxSize,
Trait Implementations
sourceimpl<I, S, P> Mutator<I, S> for PacketCrossoverInsertMutator<P, S> where
P: HasCrossoverInsertMutation<S> + Clone,
I: Input + HasLen + HasPackets<P>,
S: HasRand + HasMaxSize,
impl<I, S, P> Mutator<I, S> for PacketCrossoverInsertMutator<P, S> where
P: HasCrossoverInsertMutation<S> + Clone,
I: Input + HasLen + HasPackets<P>,
S: HasRand + HasMaxSize,
sourceimpl<P, S> Named for PacketCrossoverInsertMutator<P, S> where
P: HasCrossoverInsertMutation<S> + Clone,
S: HasRand + HasMaxSize,
impl<P, S> Named for PacketCrossoverInsertMutator<P, S> where
P: HasCrossoverInsertMutation<S> + Clone,
S: HasRand + HasMaxSize,
Auto Trait Implementations
impl<P, S> RefUnwindSafe for PacketCrossoverInsertMutator<P, S> where
P: RefUnwindSafe,
S: RefUnwindSafe,
impl<P, S> Send for PacketCrossoverInsertMutator<P, S> where
P: Send,
S: Send,
impl<P, S> Sync for PacketCrossoverInsertMutator<P, S> where
P: Sync,
S: Sync,
impl<P, S> Unpin for PacketCrossoverInsertMutator<P, S> where
P: Unpin,
S: Unpin,
impl<P, S> UnwindSafe for PacketCrossoverInsertMutator<P, S> where
P: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Tail, T> Prepend<T> for Tail
impl<Tail, T> Prepend<T> for Tail
type PreprendResult = Tail
type PreprendResult = Tail
The Resulting [TupleList], of an Prepend::prepend() call,
including the prepended entry. Read more
sourcefn prepend(self, value: T) -> (T, <Tail as Prepend<T>>::PreprendResult)
fn prepend(self, value: T) -> (T, <Tail as Prepend<T>>::PreprendResult)
Prepend a value to this tuple, returning a new tuple with prepended value.