pub trait RowPredicate: Send + Sync {
// Required method
fn keep_physical(
&self,
schema: &RowSchema,
row: &PhysicalRow,
) -> ExecResult<bool>;
}Required Methods§
fn keep_physical( &self, schema: &RowSchema, row: &PhysicalRow, ) -> ExecResult<bool>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".