pub trait BetweenReduce: VTable {
// Required method
fn between(
array: &Self::Array,
lower: &dyn Array,
upper: &dyn Array,
options: &BetweenOptions,
) -> VortexResult<Option<ArrayRef>>;
}Expand description
Reduce rule for between: restructure the array without reading buffers.
Returns Ok(None) if the rule doesn’t apply or buffer access is needed.
Required Methods§
fn between( array: &Self::Array, lower: &dyn Array, upper: &dyn Array, options: &BetweenOptions, ) -> VortexResult<Option<ArrayRef>>
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.