Struct sample_arrow2::list::ListSampler
source · pub struct ListSampler<V> {
pub data_type: DataType,
pub null: Option<V>,
pub len: Range<usize>,
pub inner: ArraySampler,
}
Fields§
§data_type: DataType
§null: Option<V>
§len: Range<usize>
§inner: ArraySampler
Trait Implementations§
source§impl<V> Sample for ListSampler<V>
impl<V> Sample for ListSampler<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 ListSampler<V>
impl<V> Send for ListSampler<V>where
V: Send,
impl<V> Sync for ListSampler<V>where
V: Sync,
impl<V> Unpin for ListSampler<V>where
V: Unpin,
impl<V> !UnwindSafe for ListSampler<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