Struct sample_std::ChainResample
source · pub struct ChainResample<S, F> { /* private fields */ }
Expand description
Trait Implementations§
source§impl<S: Clone, F: Clone> Clone for ChainResample<S, F>
impl<S: Clone, F: Clone> Clone for ChainResample<S, F>
source§fn clone(&self) -> ChainResample<S, F>
fn clone(&self) -> ChainResample<S, F>
Returns a copy 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<S, F, SS> Sample for ChainResample<S, F>where
S: Sample,
S::Output: Clone,
SS: Sample + 'static,
F: Fn(S::Output) -> SS,
impl<S, F, SS> Sample for ChainResample<S, F>where S: Sample, S::Output: Clone, SS: Sample + 'static, F: Fn(S::Output) -> SS,
type Output = Chained<<S as Sample>::Output, <SS 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<S, F> RefUnwindSafe for ChainResample<S, F>where F: RefUnwindSafe, S: RefUnwindSafe,
impl<S, F> Send for ChainResample<S, F>where F: Send, S: Send,
impl<S, F> Sync for ChainResample<S, F>where F: Sync, S: Sync,
impl<S, F> Unpin for ChainResample<S, F>where F: Unpin, S: Unpin,
impl<S, F> UnwindSafe for ChainResample<S, F>where F: UnwindSafe, 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