Struct sample_std::Zip 
source · pub struct Zip<A, B> { /* private fields */ }Expand description
See Sample::zip.
Trait Implementations§
source§impl<A, B> Sample for Zip<A, B>where
    A: Sample,
    B: Sample,
    A::Output: Clone,
    B::Output: Clone,
 
impl<A, B> Sample for Zip<A, B>where A: Sample, B: Sample, A::Output: Clone, B::Output: Clone,
type Output = (<A as Sample>::Output, <B as Sample>::Output)
source§fn shrink(&self, v: Self::Output) -> Shrunk<'_, Self::Output>
 
fn shrink(&self, v: Self::Output) -> Shrunk<'_, Self::Output>
Shrink the given value into a “smaller” value. Defaults to an empty
iterator (which represents that the value cannot be shrunk).
source§fn try_convert<T, I, F>(self, from: F, try_into: I) -> TryConvert<Self, F, I>where
    Self: Sized,
    F: Fn(Self::Output) -> T + Copy,
    I: Fn(T) -> Option<Self::Output>,
 
fn try_convert<T, I, F>(self, from: F, try_into: I) -> TryConvert<Self, F, I>where Self: Sized, F: Fn(Self::Output) -> T + Copy, I: Fn(T) -> Option<Self::Output>,
source§fn zip<OS>(self, other: OS) -> Zip<Self, OS>where
    Self: Sized,
    OS: Sample,
 
fn zip<OS>(self, other: OS) -> Zip<Self, OS>where Self: Sized, OS: Sample,
“Zip” two samplers together. Functionally equivalent to 
(self, other).source§fn chain_resample<F, RS>(
    self,
    transform: F,
    subsamples: usize
) -> ChainResample<Self, F>where
    Self: Sized,
    F: Fn(Self::Output) -> RS,
    RS: Sample,
 
fn chain_resample<F, RS>( self, transform: F, subsamples: usize ) -> ChainResample<Self, F>where Self: Sized, F: Fn(Self::Output) -> RS, RS: Sample,
“Resampling” method for chaining samplers. Read more
Auto Trait Implementations§
impl<A, B> RefUnwindSafe for Zip<A, B>where A: RefUnwindSafe, B: RefUnwindSafe,
impl<A, B> Send for Zip<A, B>where A: Send, B: Send,
impl<A, B> Sync for Zip<A, B>where A: Sync, B: Sync,
impl<A, B> Unpin for Zip<A, B>where A: Unpin, B: Unpin,
impl<A, B> UnwindSafe for Zip<A, B>where A: UnwindSafe, B: 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