pub struct StructSampler<V> {
pub data_type: DataType,
pub null: Option<V>,
pub values: Vec<ArraySampler>,
}
Fields§
§data_type: DataType
§null: Option<V>
§values: Vec<ArraySampler>
Trait Implementations§
Source§impl<V> Sample for StructSampler<V>
impl<V> Sample for StructSampler<V>
type Output = Box<dyn Array>
Source§fn shrink(&self, _: Self::Output) -> Box<dyn Iterator<Item = Self::Output> + '_>
fn shrink(&self, _: Self::Output) -> Box<dyn Iterator<Item = 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<V> Freeze for StructSampler<V>where
V: Freeze,
impl<V> !RefUnwindSafe for StructSampler<V>
impl<V> Send for StructSampler<V>where
V: Send,
impl<V> Sync for StructSampler<V>where
V: Sync,
impl<V> Unpin for StructSampler<V>where
V: Unpin,
impl<V> !UnwindSafe for StructSampler<V>
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