Trait sql::grammar::clause::order_by::Orderable [] [src]

pub trait Orderable where
    Self: Sized
{ type Output; fn order(self, _: Option<Order>) -> Self::Output; fn ascend(self) -> Self::Output { ... }
fn descend(self) -> Self::Output { ... } }

An object that can be ordered by.

Associated Types

The type produced after setting an order.

Required Methods

Set the order.

Provided Methods

Set the ascending order.

Set the descending order.

Implementations on Foreign Types

impl<'l> Orderable for &'l str
[src]

[src]

[src]

[src]

Implementors