pub struct StructEncoding;
Expand description
The array encoding
Trait Implementations§
Source§impl ArrayEncodingExt for StructEncoding
impl ArrayEncodingExt for StructEncoding
Source§impl ComputeVTable for StructEncoding
impl ComputeVTable for StructEncoding
Source§fn filter_fn(&self) -> Option<&dyn FilterFn<ArrayData>>
fn filter_fn(&self) -> Option<&dyn FilterFn<ArrayData>>
Filter an array with a given mask. Read more
Source§fn scalar_at_fn(&self) -> Option<&dyn ScalarAtFn<ArrayData>>
fn scalar_at_fn(&self) -> Option<&dyn ScalarAtFn<ArrayData>>
Single item indexing on Vortex arrays. Read more
Source§fn slice_fn(&self) -> Option<&dyn SliceFn<ArrayData>>
fn slice_fn(&self) -> Option<&dyn SliceFn<ArrayData>>
Perform zero-copy slicing of an array. Read more
Source§fn take_fn(&self) -> Option<&dyn TakeFn<ArrayData>>
fn take_fn(&self) -> Option<&dyn TakeFn<ArrayData>>
Take a set of indices from an array. This often forces allocations and decoding of
the receiver. Read more
Source§fn binary_boolean_fn(
&self,
_lhs: &ArrayData,
_rhs: &ArrayData,
) -> Option<&dyn BinaryBooleanFn<ArrayData>>
fn binary_boolean_fn( &self, _lhs: &ArrayData, _rhs: &ArrayData, ) -> Option<&dyn BinaryBooleanFn<ArrayData>>
Implementation of binary boolean logic operations. Read more
Source§fn cast_fn(&self) -> Option<&dyn CastFn<ArrayData>>
fn cast_fn(&self) -> Option<&dyn CastFn<ArrayData>>
Implemented for arrays that can be casted to different types. Read more
Source§fn compare_fn(&self) -> Option<&dyn CompareFn<ArrayData>>
fn compare_fn(&self) -> Option<&dyn CompareFn<ArrayData>>
Binary operator implementation for arrays against other arrays. Read more
Source§fn fill_forward_fn(&self) -> Option<&dyn FillForwardFn<ArrayData>>
fn fill_forward_fn(&self) -> Option<&dyn FillForwardFn<ArrayData>>
Array function that returns new arrays a non-null value is repeated across runs of nulls. Read more
Source§fn search_sorted_fn(&self) -> Option<&dyn SearchSortedFn<ArrayData>>
fn search_sorted_fn(&self) -> Option<&dyn SearchSortedFn<ArrayData>>
Perform a search over an ordered array. Read more
Source§fn subtract_scalar_fn(&self) -> Option<&dyn SubtractScalarFn<ArrayData>>
fn subtract_scalar_fn(&self) -> Option<&dyn SubtractScalarFn<ArrayData>>
Broadcast subtraction of scalar from Vortex array. Read more
Source§impl Debug for StructEncoding
impl Debug for StructEncoding
Source§impl Encoding for StructEncoding
impl Encoding for StructEncoding
type Array = StructArray
type Metadata = StructMetadata
Source§impl EncodingVTable for StructEncoding
impl EncodingVTable for StructEncoding
fn id(&self) -> EncodingId
fn as_any(&self) -> &dyn Any
Source§fn with_dyn(
&self,
array: &ArrayData,
f: &mut dyn for<'b> FnMut(&'b (dyn ArrayTrait + 'b)) -> VortexResult<()>,
) -> VortexResult<()>
fn with_dyn( &self, array: &ArrayData, f: &mut dyn for<'b> FnMut(&'b (dyn ArrayTrait + 'b)) -> VortexResult<()>, ) -> VortexResult<()>
Unwrap the provided array into an implementation of ArrayTrait
Source§impl FilterFn<StructArray> for StructEncoding
impl FilterFn<StructArray> for StructEncoding
Source§fn filter(
&self,
array: &StructArray,
mask: FilterMask,
) -> VortexResult<ArrayData>
fn filter( &self, array: &StructArray, mask: FilterMask, ) -> VortexResult<ArrayData>
Filter an array by the provided predicate.
Source§impl ScalarAtFn<StructArray> for StructEncoding
impl ScalarAtFn<StructArray> for StructEncoding
fn scalar_at(&self, array: &StructArray, index: usize) -> VortexResult<Scalar>
Source§impl SliceFn<StructArray> for StructEncoding
impl SliceFn<StructArray> for StructEncoding
Source§fn slice(
&self,
array: &StructArray,
start: usize,
stop: usize,
) -> VortexResult<ArrayData>
fn slice( &self, array: &StructArray, start: usize, stop: usize, ) -> VortexResult<ArrayData>
Return a zero-copy slice of an array, between
start
(inclusive) and end
(exclusive).
If start >= stop, returns an empty array of the same type as self
.
Assumes that start or stop are out of bounds, may panic otherwise.Source§impl StatisticsVTable<StructArray> for StructEncoding
impl StatisticsVTable<StructArray> for StructEncoding
Source§fn compute_statistics(
&self,
array: &StructArray,
stat: Stat,
) -> VortexResult<StatsSet>
fn compute_statistics( &self, array: &StructArray, stat: Stat, ) -> VortexResult<StatsSet>
Compute the requested statistic. Can return additional stats.
Source§impl TakeFn<StructArray> for StructEncoding
impl TakeFn<StructArray> for StructEncoding
fn take( &self, array: &StructArray, indices: &ArrayData, options: TakeOptions, ) -> VortexResult<ArrayData>
Source§impl ValidityVTable<StructArray> for StructEncoding
impl ValidityVTable<StructArray> for StructEncoding
fn is_valid(&self, array: &StructArray, index: usize) -> bool
fn logical_validity(&self, array: &StructArray) -> LogicalValidity
Source§impl VisitorVTable<StructArray> for StructEncoding
impl VisitorVTable<StructArray> for StructEncoding
fn accept( &self, array: &StructArray, visitor: &mut dyn ArrayVisitor, ) -> VortexResult<()>
Auto Trait Implementations§
impl Freeze for StructEncoding
impl RefUnwindSafe for StructEncoding
impl Send for StructEncoding
impl Sync for StructEncoding
impl Unpin for StructEncoding
impl UnwindSafe for StructEncoding
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