pub trait ArraySessionExt: SessionExt {
// Provided methods
fn arrays(&self) -> Ref<'_, ArraySession> { ... }
fn array_serialize(&self, array: &ArrayRef) -> VortexResult<Option<Vec<u8>>> { ... }
}Expand description
Session data for Vortex arrays.
Provided Methods§
Sourcefn arrays(&self) -> Ref<'_, ArraySession>
fn arrays(&self) -> Ref<'_, ArraySession>
Returns the array encoding registry.
Sourcefn array_serialize(&self, array: &ArrayRef) -> VortexResult<Option<Vec<u8>>>
fn array_serialize(&self, array: &ArrayRef) -> VortexResult<Option<Vec<u8>>>
Serialize an array using a plugin from the registry.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.