pub trait JoinBuilder<V>: Sized {
// Required methods
fn make_inner(table: &str, alias: &str, on: Expression<V>) -> Self;
fn make_left(table: &str, alias: &str, on: Expression<V>) -> Self;
}Expand description
Trait for constructing dialect-specific join clauses.
Required Methods§
fn make_inner(table: &str, alias: &str, on: Expression<V>) -> Self
fn make_left(table: &str, alias: &str, on: Expression<V>) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".