Skip to main content

RowPredicate

Trait RowPredicate 

Source
pub trait RowPredicate: Send + Sync {
    // Required method
    fn keep_physical(
        &self,
        schema: &RowSchema,
        row: &PhysicalRow,
    ) -> ExecResult<bool>;
}

Required Methods§

Source

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".

Implementors§