Trait JoinSelect

Source
pub trait JoinSelect {
    type Table: Table;
    type Fields: Default;

    // Required method
    fn write_join_select(&self, sql: &mut String);

    // Provided method
    fn select(self) -> SelectStatement<Self, WildCard>
       where Self: Sized { ... }
}

Required Associated Types§

Required Methods§

Source

fn write_join_select(&self, sql: &mut String)

Provided Methods§

Source

fn select(self) -> SelectStatement<Self, WildCard>
where Self: Sized,

Implementors§