pub trait ByteLengthKernel: VTable {
// Required method
fn byte_length(
array: ArrayView<'_, Self>,
ctx: &mut ExecutionCtx,
) -> VortexResult<Option<ArrayRef>>;
}Required Methods§
fn byte_length( array: ArrayView<'_, Self>, ctx: &mut ExecutionCtx, ) -> VortexResult<Option<ArrayRef>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".