Struct sample_arrow2::struct_::StructSampler
source · 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> !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