pub trait JoinDispatch: IntoDf {
// Provided methods
unsafe fn _create_left_df_from_slice(
&self,
join_tuples: &[IdxSize],
left_join: bool,
was_sliced: bool,
sorted_tuple_idx: bool,
) -> DataFrame { ... }
fn _full_join_from_series(
&self,
other: &DataFrame,
s_left: &Series,
s_right: &Series,
args: JoinArgs,
) -> PolarsResult<DataFrame> { ... }
}Provided Methods§
Sourceunsafe fn _create_left_df_from_slice(
&self,
join_tuples: &[IdxSize],
left_join: bool,
was_sliced: bool,
sorted_tuple_idx: bool,
) -> DataFrame
unsafe fn _create_left_df_from_slice( &self, join_tuples: &[IdxSize], left_join: bool, was_sliced: bool, sorted_tuple_idx: bool, ) -> DataFrame
§Safety
Join tuples must be in bounds
fn _full_join_from_series( &self, other: &DataFrame, s_left: &Series, s_right: &Series, args: JoinArgs, ) -> PolarsResult<DataFrame>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".