pub struct NotSupported;
Expand description
Placeholder type used to indicate when a particular vtable is not supported by the encoding.
Trait Implementations§
Source§impl<V: VTable> ComputeVTable<V> for NotSupported
impl<V: VTable> ComputeVTable<V> for NotSupported
Source§fn invoke(
_array: &V::Array,
_compute_fn: &ComputeFn,
_args: &InvocationArgs<'_>,
) -> VortexResult<Option<Output>>
fn invoke( _array: &V::Array, _compute_fn: &ComputeFn, _args: &InvocationArgs<'_>, ) -> VortexResult<Option<Output>>
Dynamically invokes the given compute function on the array. Read more
Source§impl<V: VTable> EncodeVTable<V> for NotSupported
Default implementation for encodings that do not support encoding.
impl<V: VTable> EncodeVTable<V> for NotSupported
Default implementation for encodings that do not support encoding.
Source§impl<V: VTable> SerdeVTable<V> for NotSupported
impl<V: VTable> SerdeVTable<V> for NotSupported
type Metadata = EmptyMetadata
Source§fn metadata(_array: &V::Array) -> VortexResult<Option<Self::Metadata>>
fn metadata(_array: &V::Array) -> VortexResult<Option<Self::Metadata>>
Exports the metadata for the array. Read more
Source§fn build(
encoding: &V::Encoding,
_dtype: &DType,
_len: usize,
_metadata: &Self::Metadata,
_buffers: &[ByteBuffer],
_children: &dyn ArrayChildren,
) -> VortexResult<V::Array>
fn build( encoding: &V::Encoding, _dtype: &DType, _len: usize, _metadata: &Self::Metadata, _buffers: &[ByteBuffer], _children: &dyn ArrayChildren, ) -> VortexResult<V::Array>
Build an array from its given parts.
Auto Trait Implementations§
impl Freeze for NotSupported
impl RefUnwindSafe for NotSupported
impl Send for NotSupported
impl Sync for NotSupported
impl Unpin for NotSupported
impl UnwindSafe for NotSupported
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