pub type select<Selection> = SelectStatement<NoFromClause, SelectClause<Selection>>;Expand description
Represents the return type of diesel::select(selection)
Aliased Type§
pub struct select<Selection> {
    pub select: SelectClause<Selection>,
    pub from: NoFromClause,
    pub distinct: NoDistinctClause,
    pub where_clause: NoWhereClause,
    pub order: NoOrderClause,
    pub limit_offset: LimitOffsetClause<NoLimitClause, NoOffsetClause>,
    pub group_by: NoGroupByClause,
    pub having: NoHavingClause,
    pub locking: NoLockingClause,
}Fields§
§select: SelectClause<Selection>The select clause of the query
from: NoFromClauseThe from clause of the query
distinct: NoDistinctClauseThe distinct clause of the query
where_clause: NoWhereClauseThe where clause of the query
order: NoOrderClauseThe order clause of the query
limit_offset: LimitOffsetClause<NoLimitClause, NoOffsetClause>The combined limit/offset clause of the query
group_by: NoGroupByClauseThe group by clause of the query
having: NoHavingClauseThe having clause of the query
locking: NoLockingClauseThe locking clause of the query