pub struct FSSTVTable;Trait Implementations§
Source§impl ArrayVTable<FSSTVTable> for FSSTVTable
impl ArrayVTable<FSSTVTable> for FSSTVTable
Source§impl CanonicalVTable<FSSTVTable> for FSSTVTable
impl CanonicalVTable<FSSTVTable> for FSSTVTable
Source§fn canonicalize(array: &FSSTArray) -> VortexResult<Canonical>
fn canonicalize(array: &FSSTArray) -> VortexResult<Canonical>
Returns the canonical representation of the array. Read more
Source§fn append_to_builder(
array: &FSSTArray,
builder: &mut dyn ArrayBuilder,
) -> VortexResult<()>
fn append_to_builder( array: &FSSTArray, builder: &mut dyn ArrayBuilder, ) -> VortexResult<()>
Writes the array into a canonical builder. Read more
Source§impl CompareKernel for FSSTVTable
impl CompareKernel for FSSTVTable
Source§impl Debug for FSSTVTable
impl Debug for FSSTVTable
Source§impl EncodeVTable<FSSTVTable> for FSSTVTable
impl EncodeVTable<FSSTVTable> for FSSTVTable
Source§impl FilterKernel for FSSTVTable
impl FilterKernel for FSSTVTable
Source§impl OperationsVTable<FSSTVTable> for FSSTVTable
impl OperationsVTable<FSSTVTable> for FSSTVTable
Source§impl SerdeVTable<FSSTVTable> for FSSTVTable
impl SerdeVTable<FSSTVTable> for FSSTVTable
type Metadata = ProstMetadata<FSSTMetadata>
Source§fn metadata(array: &FSSTArray) -> VortexResult<Option<Self::Metadata>>
fn metadata(array: &FSSTArray) -> VortexResult<Option<Self::Metadata>>
Exports the metadata for the array. Read more
Source§fn build(
_encoding: &FSSTEncoding,
dtype: &DType,
len: usize,
metadata: &<Self::Metadata as DeserializeMetadata>::Output,
buffers: &[ByteBuffer],
children: &dyn ArrayChildren,
) -> VortexResult<FSSTArray>
fn build( _encoding: &FSSTEncoding, dtype: &DType, len: usize, metadata: &<Self::Metadata as DeserializeMetadata>::Output, buffers: &[ByteBuffer], children: &dyn ArrayChildren, ) -> VortexResult<FSSTArray>
Build an array from its given parts.
Source§impl TakeKernel for FSSTVTable
impl TakeKernel for FSSTVTable
Source§impl VTable for FSSTVTable
impl VTable for FSSTVTable
type Array = FSSTArray
type Encoding = FSSTEncoding
type ArrayVTable = FSSTVTable
type CanonicalVTable = FSSTVTable
type OperationsVTable = FSSTVTable
type ValidityVTable = ValidityVTableFromChild
type VisitorVTable = FSSTVTable
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 = FSSTVTable
type EncodeVTable = FSSTVTable
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 = FSSTVTable
type SerdeVTable = FSSTVTable
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 ValidityChild<FSSTVTable> for FSSTVTable
impl ValidityChild<FSSTVTable> for FSSTVTable
fn validity_child(array: &FSSTArray) -> &dyn Array
Source§impl VisitorVTable<FSSTVTable> for FSSTVTable
impl VisitorVTable<FSSTVTable> for FSSTVTable
Source§fn visit_buffers(array: &FSSTArray, visitor: &mut dyn ArrayBufferVisitor)
fn visit_buffers(array: &FSSTArray, visitor: &mut dyn ArrayBufferVisitor)
Visit the buffers of the array.
Source§fn visit_children(array: &FSSTArray, visitor: &mut dyn ArrayChildVisitor)
fn visit_children(array: &FSSTArray, visitor: &mut dyn ArrayChildVisitor)
Visit the children of the array.
Auto Trait Implementations§
impl Freeze for FSSTVTable
impl RefUnwindSafe for FSSTVTable
impl Send for FSSTVTable
impl Sync for FSSTVTable
impl Unpin for FSSTVTable
impl UnwindSafe for FSSTVTable
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