polars_lazy::dsl

Trait ColumnBinaryUdf

Source
pub trait ColumnBinaryUdf: Send + Sync {
    // Required method
    fn call_udf(&self, a: Column, b: Column) -> Result<Column, PolarsError>;
}
Expand description

A wrapper trait for any binary closure Fn(Column, Column) -> PolarsResult<Column>

Required Methods§

Trait Implementations§

Source§

impl Debug for dyn ColumnBinaryUdf

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Implementors§