Trait polars_plan::plans::DataFrameUdf

source ·
pub trait DataFrameUdf: Send + Sync {
    // Required method
    fn call_udf(&self, df: DataFrame) -> PolarsResult<DataFrame>;
}

Required Methods§

Trait Implementations§

source§

impl Debug for dyn DataFrameUdf

source§

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

Formats the value using the given formatter. Read more

Implementors§

source§

impl DataFrameUdf for PythonFunction

Available on crate feature python only.
source§

impl<F> DataFrameUdf for F