Trait ColumnsUdf
pub trait ColumnsUdf: Send + Sync {
// Required method
fn call_udf(&self, s: &mut [Column]) -> Result<Option<Column>, PolarsError>;
// Provided methods
fn as_any(&self) -> &(dyn Any + 'static) { ... }
fn try_serialize(&self, _buf: &mut Vec<u8>) -> Result<(), PolarsError> { ... }
}
Available on crate feature
lazy
only.Expand description
A wrapper trait for any closure Fn(Vec<Series>) -> PolarsResult<Series>