pub trait CreateTableIntoQuery: Send + Sync {
    fn into_query(self) -> Query;
}
Expand description

Any object that represents a table and that can be turned into a query

Required methods

Turns self into a query

Implementors