Struct sample_std::VecSampler
source · pub struct VecSampler<S, I> {
pub length: S,
pub el: I,
}
Expand description
Fields§
§length: S
§el: I
Trait Implementations§
source§impl<S: Clone, I: Clone> Clone for VecSampler<S, I>
impl<S: Clone, I: Clone> Clone for VecSampler<S, I>
source§fn clone(&self) -> VecSampler<S, I>
fn clone(&self) -> VecSampler<S, I>
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, I, T> Sample for VecSampler<S, I>where
S: Sample<Output = usize>,
I: Sample<Output = T>,
T: Clone + 'static,
impl<S, I, T> Sample for VecSampler<S, I>where S: Sample<Output = usize>, I: Sample<Output = T>, T: Clone + 'static,
type Output = Vec<T, Global>
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, I> RefUnwindSafe for VecSampler<S, I>where I: RefUnwindSafe, S: RefUnwindSafe,
impl<S, I> Send for VecSampler<S, I>where I: Send, S: Send,
impl<S, I> Sync for VecSampler<S, I>where I: Sync, S: Sync,
impl<S, I> Unpin for VecSampler<S, I>where I: Unpin, S: Unpin,
impl<S, I> UnwindSafe for VecSampler<S, I>where I: 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