pub trait CrossJoinFilter: Send + Sync { // Required method fn apply(&self, df: DataFrame) -> Result<DataFrame, PolarsError>; }
polars-ops