pub trait PhysicalIoExpr: Send + Sync {
    fn evaluate(&self, df: &DataFrame) -> Result<Series>;

    fn as_stats_evaluator(&self) -> Option<&dyn StatsEvaluator> { ... }
}

Required Methods

Take a DataFrame and produces a boolean Series that serves as a predicate mask

Provided Methods

Can take &dyn Statistics and determine of a file should be read -> true or not -> false

Implementors