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

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

Methods

impl<T> Desc<T>
[src]

Trait Implementations

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

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

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

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

impl<T> NonAggregate for Desc<T> where T: NonAggregate
[src]

impl<T> SortExpressionMethods for Desc<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