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>where
V: Sample<Output = bool> + Send + Sync + 'static,
impl<V> Sample for ListSampler<V>where V: Sample<Output = bool> + Send + Sync + 'static,
type Output = Box<dyn Array, Global>
source§fn shrink(
&self,
_: Self::Output
) -> Box<dyn Iterator<Item = Self::Output> + '_, Global>
fn shrink( &self, _: Self::Output ) -> Box<dyn Iterator<Item = Self::Output> + '_, Global>
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>where
Self: Sized,
F: Fn(Self::Output) -> T + Copy,
I: Fn(T) -> Option<Self::Output>,
fn try_convert<T, I, F>(self, from: F, try_into: I) -> TryConvert<Self, F, I>where Self: Sized, F: Fn(Self::Output) -> T + Copy, I: Fn(T) -> Option<Self::Output>,
source§fn zip<OS>(self, other: OS) -> Zip<Self, OS>where
Self: Sized,
OS: Sample,
fn zip<OS>(self, other: OS) -> Zip<Self, OS>where Self: Sized, OS: Sample,
“Zip” two samplers together. Functionally equivalent to
(self, other)
.source§fn chain_resample<F, RS>(
self,
transform: F,
subsamples: usize
) -> ChainResample<Self, F>where
Self: Sized,
F: Fn(Self::Output) -> RS,
RS: Sample,
fn chain_resample<F, RS>( self, transform: F, subsamples: usize ) -> ChainResample<Self, F>where Self: Sized, F: Fn(Self::Output) -> RS, RS: Sample,
“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