pub struct FixedLenSampler<A> {
pub len: usize,
pub array: A,
}
Fields§
§len: usize
§array: A
Trait Implementations§
Source§impl<A> Sample for FixedLenSampler<A>
impl<A> Sample for FixedLenSampler<A>
type Output = <A as Sample>::Output
Source§fn shrink(&self, array: Self::Output) -> Shrunk<'_, Self::Output>
fn shrink(&self, array: 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<A> Freeze for FixedLenSampler<A>where
A: Freeze,
impl<A> RefUnwindSafe for FixedLenSampler<A>where
A: RefUnwindSafe,
impl<A> Send for FixedLenSampler<A>where
A: Send,
impl<A> Sync for FixedLenSampler<A>where
A: Sync,
impl<A> Unpin for FixedLenSampler<A>where
A: Unpin,
impl<A> UnwindSafe for FixedLenSampler<A>where
A: 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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more