BetweenKernel

Trait BetweenKernel 

Source
pub trait BetweenKernel: VTable {
    // Required method
    fn between(
        &self,
        arr: &Self::Array,
        lower: &(dyn Array + 'static),
        upper: &(dyn Array + 'static),
        options: &BetweenOptions,
    ) -> Result<Option<Arc<dyn Array>>, VortexError>;
}

Required Methods§

Source

fn between( &self, arr: &Self::Array, lower: &(dyn Array + 'static), upper: &(dyn Array + 'static), options: &BetweenOptions, ) -> Result<Option<Arc<dyn Array>>, VortexError>

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.

Implementors§