pub trait JoinAlgo<DS>where
DS: JoinIterable,{
// Required method
fn join_iter(
query: JoinQuery,
datastructures: HashMap<String, &DS>,
) -> impl Iterator<Item = Vec<usize>>;
}Expand description
The JoinAlgo trait is used as a base for join algorithms.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.