Trait polars::prelude::ColumnBinaryUdf

pub trait ColumnBinaryUdf: Send + Sync {
    // Required method
    fn call_udf(&self, a: Column, b: Column) -> Result<Column, PolarsError>;
}
Available on crate feature lazy only.
Expand description

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

Required Methods§

Trait Implementations§

§

impl Debug for dyn ColumnBinaryUdf

§

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

Formats the value using the given formatter. Read more

Implementors§

§

impl<F> ColumnBinaryUdf for F