pub struct ListVTable;
Trait Implementations§
Source§impl ArrayVTable<ListVTable> for ListVTable
impl ArrayVTable<ListVTable> for ListVTable
Source§impl CanonicalVTable<ListVTable> for ListVTable
impl CanonicalVTable<ListVTable> for ListVTable
Source§fn canonicalize(array: &ListArray) -> VortexResult<Canonical>
fn canonicalize(array: &ListArray) -> VortexResult<Canonical>
Returns the canonical representation of the array. Read more
Source§fn append_to_builder(
array: &V::Array,
builder: &mut dyn ArrayBuilder,
) -> VortexResult<()>
fn append_to_builder( array: &V::Array, builder: &mut dyn ArrayBuilder, ) -> VortexResult<()>
Writes the array into a canonical builder. Read more
Source§impl Debug for ListVTable
impl Debug for ListVTable
Source§impl FilterKernel for ListVTable
impl FilterKernel for ListVTable
Source§impl IsConstantKernel for ListVTable
impl IsConstantKernel for ListVTable
Source§fn is_constant(
&self,
_array: &ListArray,
_opts: &IsConstantOpts,
) -> VortexResult<Option<bool>>
fn is_constant( &self, _array: &ListArray, _opts: &IsConstantOpts, ) -> VortexResult<Option<bool>>
Preconditions Read more
Source§impl IsSortedKernel for ListVTable
impl IsSortedKernel for ListVTable
fn is_strict_sorted(&self, _array: &ListArray) -> VortexResult<bool>
Source§impl MaskKernel for ListVTable
impl MaskKernel for ListVTable
Source§impl MinMaxKernel for ListVTable
impl MinMaxKernel for ListVTable
fn min_max(&self, _array: &ListArray) -> VortexResult<Option<MinMaxResult>>
Source§impl OperationsVTable<ListVTable> for ListVTable
impl OperationsVTable<ListVTable> for ListVTable
Source§impl SerdeVTable<ListVTable> for ListVTable
impl SerdeVTable<ListVTable> for ListVTable
type Metadata = ProstMetadata<ListMetadata>
Source§fn metadata(array: &ListArray) -> VortexResult<Option<Self::Metadata>>
fn metadata(array: &ListArray) -> VortexResult<Option<Self::Metadata>>
Exports the metadata for the array. Read more
Source§fn build(
_encoding: &ListEncoding,
dtype: &DType,
len: usize,
metadata: &ListMetadata,
_buffers: &[ByteBuffer],
children: &dyn ArrayChildren,
) -> VortexResult<ListArray>
fn build( _encoding: &ListEncoding, dtype: &DType, len: usize, metadata: &ListMetadata, _buffers: &[ByteBuffer], children: &dyn ArrayChildren, ) -> VortexResult<ListArray>
Build an array from its given parts.
Source§impl VTable for ListVTable
impl VTable for ListVTable
type Array = ListArray
type Encoding = ListEncoding
type ArrayVTable = ListVTable
type CanonicalVTable = ListVTable
type OperationsVTable = ListVTable
type ValidityVTable = ValidityVTableFromValidityHelper
type VisitorVTable = ListVTable
Source§type ComputeVTable = NotSupported
type ComputeVTable = NotSupported
Optionally enable implementing dynamic compute dispatch for this encoding.
Can be disabled by assigning to the
NotSupported
type.Source§type EncodeVTable = NotSupported
type EncodeVTable = NotSupported
Optionally enable the
EncodeVTable
for this encoding. This allows it to partake in
compression.
Can be disabled by assigning to the NotSupported
type.Source§type SerdeVTable = ListVTable
type SerdeVTable = ListVTable
Optionally enable serde for this encoding by implementing the
SerdeVTable
trait.
Can be disabled by assigning to the NotSupported
type.Source§fn id(_encoding: &Self::Encoding) -> EncodingId
fn id(_encoding: &Self::Encoding) -> EncodingId
Returns the ID of the encoding.
Source§fn encoding(_array: &Self::Array) -> EncodingRef
fn encoding(_array: &Self::Array) -> EncodingRef
Returns the encoding for the array.
Source§impl VisitorVTable<ListVTable> for ListVTable
impl VisitorVTable<ListVTable> for ListVTable
Source§fn visit_buffers(_array: &ListArray, _visitor: &mut dyn ArrayBufferVisitor)
fn visit_buffers(_array: &ListArray, _visitor: &mut dyn ArrayBufferVisitor)
Visit the buffers of the array.
Source§fn visit_children(array: &ListArray, visitor: &mut dyn ArrayChildVisitor)
fn visit_children(array: &ListArray, visitor: &mut dyn ArrayChildVisitor)
Visit the children of the array.
Auto Trait Implementations§
impl Freeze for ListVTable
impl RefUnwindSafe for ListVTable
impl Send for ListVTable
impl Sync for ListVTable
impl Unpin for ListVTable
impl UnwindSafe for ListVTable
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