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

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

Methods

impl<T> Asc<T>
[src]

Trait Implementations

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

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

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

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

impl<T> NonAggregate for Asc<T> where T: NonAggregate
[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