pub trait JoinMethods {
    // Required methods
    fn join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder));
    fn left_join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder));
}

Required Methods§

source

fn join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder))

source

fn left_join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder))

Object Safety§

This trait is not object safe.

Implementors§