Struct sample_arrow2::list::ListWithLen
source · pub struct ListWithLen<V, C, A, N> {
pub len: usize,
pub validity: V,
pub count: C,
pub inner: A,
pub inner_name: N,
}
Fields§
§len: usize
§validity: V
§count: C
§inner: A
§inner_name: N
Trait Implementations§
source§impl<V, C, A, N> Sample for ListWithLen<V, C, A, N>
impl<V, C, A, N> Sample for ListWithLen<V, C, A, N>
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
source§impl<V: SetLen, C, A, N> SetLen for ListWithLen<V, C, A, N>
impl<V: SetLen, C, A, N> SetLen for ListWithLen<V, C, A, N>
impl<V, C, A, N> SampleLen for ListWithLen<V, C, A, N>
Auto Trait Implementations§
impl<V, C, A, N> RefUnwindSafe for ListWithLen<V, C, A, N>
impl<V, C, A, N> Send for ListWithLen<V, C, A, N>
impl<V, C, A, N> Sync for ListWithLen<V, C, A, N>
impl<V, C, A, N> Unpin for ListWithLen<V, C, A, N>
impl<V, C, A, N> UnwindSafe for ListWithLen<V, C, A, N>
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