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