Trait polars_lazy::dsl::SeriesUdf[][src]

pub trait SeriesUdf: Send + Sync {
    fn call_udf(&self, s: &mut [Series]) -> Result<Series>;
}
This is supported on crate feature compile only.
Expand description

A wrapper trait for any closure Fn(Vec<Series>) -> Result<Series>

Required methods

Trait Implementations

Formats the value using the given formatter. Read more

Implementors