Skip to main content

DataFrameApplyArg

Trait DataFrameApplyArg 

Source
pub trait DataFrameApplyArg {
    type Output;

    // Required method
    fn execute(
        self,
        frame: &DataFrame,
        axis: usize,
    ) -> Result<Self::Output, FrameError>;
}

Required Associated Types§

Required Methods§

Source

fn execute( self, frame: &DataFrame, axis: usize, ) -> Result<Self::Output, FrameError>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl DataFrameApplyArg for &str

Source§

type Output = Series

Source§

fn execute( self, frame: &DataFrame, axis: usize, ) -> Result<Self::Output, FrameError>

Implementors§