pub trait VectorPredicate: Send + Sync {
// Required methods
fn evaluate(&self, column: &ColumnVector) -> Vec<bool>;
fn column_name(&self) -> &str;
}Expand description
Predicate for vectorized filtering
Required Methods§
Sourcefn evaluate(&self, column: &ColumnVector) -> Vec<bool>
fn evaluate(&self, column: &ColumnVector) -> Vec<bool>
Apply predicate to a column vector, returning selection bitmap
Sourcefn column_name(&self) -> &str
fn column_name(&self) -> &str
Get the column name this predicate operates on
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".