Struct diesel::expression::helper_types::Asc [] [src]

pub struct Asc<Expr> { /* fields omitted */ }

Methods

impl<Expr> Asc<Expr>
[src]

Trait Implementations

impl<Expr: Debug> Debug for Asc<Expr>
[src]

Formats the value using the given formatter.

impl<Expr: Clone> Clone for Asc<Expr>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Expr: Copy> Copy for Asc<Expr>
[src]

impl<Expr> QueryId for Asc<Expr> where
    Expr: QueryId
[src]

impl<Expr, QS> SelectableExpression<QS> for Asc<Expr> where
    Asc<Expr>: AppearsOnTable<QS>,
    Expr: SelectableExpression<QS>, 
[src]

impl<Expr, QS> AppearsOnTable<QS> for Asc<Expr> where
    Asc<Expr>: Expression,
    Expr: AppearsOnTable<QS>, 
[src]

impl<Expr> Expression for Asc<Expr> where
    Expr: Expression
[src]

impl<Expr> NonAggregate for Asc<Expr> where
    Expr: NonAggregate
[src]

impl<Expr, DB> QueryFragment<DB> for Asc<Expr> where
    Expr: QueryFragment<DB>,
    DB: Backend
[src]

impl<T> SortExpressionMethods for Asc<T>
[src]

Specify that nulls should come before other values in this ordering. Normally, nulls come last when sorting in ascending order and first when sorting in descending order. Read more

Specify that nulls should come after other values in this ordering. Normally, nulls come last when sorting in ascending order and first when sorting in descending order. Read more