Struct butterfly_fuzz::PacketReorderMutator
source · [−]pub struct PacketReorderMutator<P> { /* private fields */ }Expand description
A mutator that swaps two random packets.
Implementations
sourceimpl<P> PacketReorderMutator<P>
impl<P> PacketReorderMutator<P>
Trait Implementations
sourceimpl<I, S, P> Mutator<I, S> for PacketReorderMutator<P> where
I: Input + HasLen + HasPackets<P>,
S: HasRand,
impl<I, S, P> Mutator<I, S> for PacketReorderMutator<P> where
I: Input + HasLen + HasPackets<P>,
S: HasRand,
Auto Trait Implementations
impl<P> RefUnwindSafe for PacketReorderMutator<P> where
P: RefUnwindSafe,
impl<P> Send for PacketReorderMutator<P> where
P: Send,
impl<P> Sync for PacketReorderMutator<P> where
P: Sync,
impl<P> Unpin for PacketReorderMutator<P> where
P: Unpin,
impl<P> UnwindSafe for PacketReorderMutator<P> where
P: 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.