Trait SerdeVTable

Source
pub trait SerdeVTable<Array> {
    // Provided method
    fn decode(
        &self,
        parts: &ArrayParts,
        ctx: &ArrayContext,
        _dtype: DType,
        _len: usize,
    ) -> VortexResult<ArrayRef> { ... }
}

Provided Methods§

Source

fn decode( &self, parts: &ArrayParts, ctx: &ArrayContext, _dtype: DType, _len: usize, ) -> VortexResult<ArrayRef>

Decode an ArrayParts into an ArrayRef of this encoding.

Implementors§