pub struct Toggle<S: Strategy> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<S: Strategy> Strategy for Toggle<S>
impl<S: Strategy> Strategy for Toggle<S>
Source§fn havoc<R: Random>(&mut self, rand: &mut R, buffer: &mut EncoderBuffer<'_>)
fn havoc<R: Random>(&mut self, rand: &mut R, buffer: &mut EncoderBuffer<'_>)
Applies the havoc strategy to the supplied buffer
Source§fn havoc_slice<R: Random>(&mut self, rand: &mut R, buffer: &mut [u8]) -> usize
fn havoc_slice<R: Random>(&mut self, rand: &mut R, buffer: &mut [u8]) -> usize
Applies the havoc strategy to the supplied buffer slice and returns the new buffer length
Source§fn havoc_u16<R: Random>(&mut self, rand: &mut R, input: u16) -> u16
fn havoc_u16<R: Random>(&mut self, rand: &mut R, input: u16) -> u16
Applies the havoc strategy to the given
u16
value and returns the new u16
resultSource§fn alternate<B: Strategy>(
self,
b: B,
period: Range<usize>,
) -> Alternate<Self, B>
fn alternate<B: Strategy>( self, b: B, period: Range<usize>, ) -> Alternate<Self, B>
Alternate between two strategies with the supplied
period
Source§fn toggle(self, period: Range<usize>) -> Toggle<Self>
fn toggle(self, period: Range<usize>) -> Toggle<Self>
Toggle the strategy on and off for the supplied
period
Source§fn while_has_capacity(self) -> WhileHasCapacity<Self>
fn while_has_capacity(self) -> WhileHasCapacity<Self>
Repeatedly applies the strategy as long as the buffer has capacity
impl<S: Copy + Strategy> Copy for Toggle<S>
Auto Trait Implementations§
impl<S> Freeze for Toggle<S>where
S: Freeze,
impl<S> RefUnwindSafe for Toggle<S>where
S: RefUnwindSafe,
impl<S> Send for Toggle<S>where
S: Send,
impl<S> Sync for Toggle<S>where
S: Sync,
impl<S> Unpin for Toggle<S>where
S: Unpin,
impl<S> UnwindSafe for Toggle<S>where
S: UnwindSafe,
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