pub trait SeriesJoin: SeriesSealed + Sized {
    // Provided methods
    fn hash_join_inner(
        &self,
        other: &Series,
        validate: JoinValidation
    ) -> Result<((Vec<u32>, Vec<u32>), bool), PolarsError> { ... }
    fn hash_join_outer(
        &self,
        other: &Series,
        validate: JoinValidation
    ) -> Result<Vec<(Option<u32>, Option<u32>)>, PolarsError> { ... }
}

Provided Methods§

source

fn hash_join_inner( &self, other: &Series, validate: JoinValidation ) -> Result<((Vec<u32>, Vec<u32>), bool), PolarsError>

source

fn hash_join_outer( &self, other: &Series, validate: JoinValidation ) -> Result<Vec<(Option<u32>, Option<u32>)>, PolarsError>

Object Safety§

This trait is not object safe.

Implementors§