pub trait SerdeVTable<Array> {
// Provided method
fn decode(
&self,
parts: &ArrayParts,
ctx: &ArrayContext,
_dtype: DType,
_len: usize,
) -> VortexResult<ArrayRef> { ... }
}
Provided Methods§
Sourcefn decode(
&self,
parts: &ArrayParts,
ctx: &ArrayContext,
_dtype: DType,
_len: usize,
) -> VortexResult<ArrayRef>
fn decode( &self, parts: &ArrayParts, ctx: &ArrayContext, _dtype: DType, _len: usize, ) -> VortexResult<ArrayRef>
Decode an ArrayParts
into an ArrayRef
of this encoding.