pub trait ArraySessionExt: SessionExt {
// Provided methods
fn arrays(&self) -> SessionGuard<'_, ArraySession> { ... }
fn array_serialize(
&self,
array: &ArrayRef,
) -> VortexResult<Option<ArraySerialization>> { ... }
}Expand description
Session data for Vortex arrays.
Provided Methods§
Sourcefn arrays(&self) -> SessionGuard<'_, ArraySession>
fn arrays(&self) -> SessionGuard<'_, ArraySession>
Returns the array encoding registry.
Sourcefn array_serialize(
&self,
array: &ArrayRef,
) -> VortexResult<Option<ArraySerialization>>
fn array_serialize( &self, array: &ArrayRef, ) -> VortexResult<Option<ArraySerialization>>
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".