Skip to main content

JoinBuilder

Trait JoinBuilder 

Source
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§

Source

fn make_inner(table: &str, alias: &str, on: Expression<V>) -> Self

Source

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".

Implementors§