Trait JoinMethods

Source
pub trait JoinMethods {
    // Required methods
    fn join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder));
    fn inner_join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder));
    fn left_join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder));
    fn right_join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder));
    fn left_outer_join(
        &mut self,
        table: &str,
        on: impl FnOnce(&mut JoinBuilder),
    );
    fn right_outer_join(
        &mut self,
        table: &str,
        on: impl FnOnce(&mut JoinBuilder),
    );
    fn full_outer_join(
        &mut self,
        table: &str,
        on: impl FnOnce(&mut JoinBuilder),
    );
    fn cross_join(&mut self, table: &str, on: impl FnOnce(&mut JoinBuilder));
    fn raw_join(&mut self, raw: &str, val: Option<Vec<Value>>);
}

Required Methods§

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

fn raw_join(&mut self, raw: &str, val: Option<Vec<Value>>)

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.

Implementors§