TransformTrait

Trait TransformTrait 

Source
pub trait TransformTrait: TransformDependencies {
    // Required method
    fn eval<'life0, 'life1, 'async_trait>(
        &'life0 self,
        dataframe: DataFrame,
        config: &'life1 CompilationConfig,
    ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementations on Foreign Types§

Source§

impl TransformTrait for Aggregate

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Bin

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, sql_df: DataFrame, config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Collect

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Extent

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, sql_df: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Filter

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Fold

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Formula

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Identifier

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Impute

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for JoinAggregate

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Pivot

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Project

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Sequence

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Stack

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for TimeUnit

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Transform

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, sql_df: DataFrame, config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl TransformTrait for Window

Source§

fn eval<'life0, 'life1, 'async_trait>( &'life0 self, dataframe: DataFrame, _config: &'life1 CompilationConfig, ) -> Pin<Box<dyn Future<Output = Result<(DataFrame, Vec<TaskValue>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§