Struct sample_arrow2::FixedLenSampler
source · 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> 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