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>
impl<S, I, T> Sample for VecSampler<S, I>
type Output = Vec<T>
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>
fn try_convert<T, I, F>(self, from: F, try_into: I) -> TryConvert<Self, F, I>
Source§fn zip<OS>(self, other: OS) -> Zip<Self, OS>
fn zip<OS>(self, other: OS) -> Zip<Self, OS>
“Zip” two samplers together. Functionally equivalent to
(self, other)
.Source§fn chain_resample<F, RS>(
self,
transform: F,
subsamples: usize,
) -> ChainResample<Self, F>
fn chain_resample<F, RS>( self, transform: F, subsamples: usize, ) -> ChainResample<Self, F>
“Resampling” method for chaining samplers. Read more
Auto Trait Implementations§
impl<S, I> Freeze for VecSampler<S, I>
impl<S, I> RefUnwindSafe for VecSampler<S, I>where
S: RefUnwindSafe,
I: RefUnwindSafe,
impl<S, I> Send for VecSampler<S, I>
impl<S, I> Sync for VecSampler<S, I>
impl<S, I> Unpin for VecSampler<S, I>
impl<S, I> UnwindSafe for VecSampler<S, I>where
S: UnwindSafe,
I: 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