pub trait ApplyLambdaGeneric<'py> {
// Required methods
fn apply_generic(
&self,
py: Python<'py>,
lambda: &Bound<'py, PyAny>,
skip_nulls: bool,
) -> PyResult<Series>;
fn apply_generic_with_dtype(
&self,
py: Python<'py>,
lambda: &Bound<'py, PyAny>,
datatype: &DataType,
skip_nulls: bool,
) -> PyResult<Series>;
}Required Methods§
fn apply_generic( &self, py: Python<'py>, lambda: &Bound<'py, PyAny>, skip_nulls: bool, ) -> PyResult<Series>
fn apply_generic_with_dtype( &self, py: Python<'py>, lambda: &Bound<'py, PyAny>, datatype: &DataType, skip_nulls: bool, ) -> PyResult<Series>
Implementors§
impl<'py> ApplyLambdaGeneric<'py> for ExtensionChunked
impl<'py> ApplyLambdaGeneric<'py> for NullChunked
impl<'py> ApplyLambdaGeneric<'py> for ArrayChunked
Available on crate feature
dtype-array only.impl<'py> ApplyLambdaGeneric<'py> for BinaryChunked
impl<'py> ApplyLambdaGeneric<'py> for BooleanChunked
impl<'py> ApplyLambdaGeneric<'py> for ListChunked
impl<'py> ApplyLambdaGeneric<'py> for ObjectChunked<ObjectValue>
Available on crate feature
object only.