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

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

Methods

impl<Expr> Asc<Expr>
[src]

[src]

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

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]

[src]

[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]

[src]

[src]

[src]

[src]

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

[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

[src]

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