Skip to main content

Query

Trait Query 

Source
pub trait Query<T> {
    // Required method
    fn into_sql(self) -> String;
}
Expand description

Trait implemented by all query builder types. Use impl Query<T> as a return type for view functions and helpers.

Required Methods§

Implementors§

Source§

impl<L: HasCols> Query<L> for LeftSemiJoin<L>

Source§

impl<R: HasCols, L: HasCols> Query<R> for RightSemiJoin<R, L>

Source§

impl<T> Query<T> for RawQuery<T>

Source§

impl<T: HasCols> Query<T> for FromWhere<T>

Source§

impl<T: HasCols> Query<T> for Table<T>