pub struct TupleStrategy3<A, B, C> { /* private fields */ }Implementations§
Source§impl<A, B, C> TupleStrategy3<A, B, C>
impl<A, B, C> TupleStrategy3<A, B, C>
Trait Implementations§
Source§impl<A: Clone, B: Clone, C: Clone> Clone for TupleStrategy3<A, B, C>
impl<A: Clone, B: Clone, C: Clone> Clone for TupleStrategy3<A, B, C>
Source§fn clone(&self) -> TupleStrategy3<A, B, C>
fn clone(&self) -> TupleStrategy3<A, B, C>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<A, B, C> Default for TupleStrategy3<A, B, C>
impl<A, B, C> Default for TupleStrategy3<A, B, C>
Source§impl<A: Arbitrary + Clone + 'static, B: Arbitrary + Clone + 'static, C: Arbitrary + Clone + 'static> Generator<(A, B, C)> for TupleStrategy3<A, B, C>
impl<A: Arbitrary + Clone + 'static, B: Arbitrary + Clone + 'static, C: Arbitrary + Clone + 'static> Generator<(A, B, C)> for TupleStrategy3<A, B, C>
Source§impl<A: Arbitrary + Clone + 'static, B: Arbitrary + Clone + 'static, C: Arbitrary + Clone + 'static> Strategy for TupleStrategy3<A, B, C>
impl<A: Arbitrary + Clone + 'static, B: Arbitrary + Clone + 'static, C: Arbitrary + Clone + 'static> Strategy for TupleStrategy3<A, B, C>
Source§fn generate<R: Rng>(&self, rng: &mut R, config: &GeneratorConfig) -> (A, B, C)
fn generate<R: Rng>(&self, rng: &mut R, config: &GeneratorConfig) -> (A, B, C)
Generate a value using this strategy
Source§fn shrink(&self, value: &(A, B, C)) -> Box<dyn Iterator<Item = (A, B, C)>>
fn shrink(&self, value: &(A, B, C)) -> Box<dyn Iterator<Item = (A, B, C)>>
Create an iterator of shrunk values from the given value
Source§fn map<F, U>(self, f: F) -> Map<Self, F>
fn map<F, U>(self, f: F) -> Map<Self, F>
Map this strategy to produce values of a different type
Auto Trait Implementations§
impl<A, B, C> Freeze for TupleStrategy3<A, B, C>
impl<A, B, C> RefUnwindSafe for TupleStrategy3<A, B, C>
impl<A, B, C> Send for TupleStrategy3<A, B, C>
impl<A, B, C> Sync for TupleStrategy3<A, B, C>
impl<A, B, C> Unpin for TupleStrategy3<A, B, C>
impl<A, B, C> UnwindSafe for TupleStrategy3<A, B, C>
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