Trait FlavoredOrder

Source
pub trait FlavoredOrder {
    // Required method
    fn as_order_clause<C, R>(&self, conn: &C) -> Result<String>
       where C: Connection<R>,
             R: Row;
}
Expand description

Order trait to specify ordering clause

Required Methods§

Source

fn as_order_clause<C, R>(&self, conn: &C) -> Result<String>
where C: Connection<R>, R: Row,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl FlavoredOrder for Condition

Source§

impl<O> FlavoredOrder for O
where O: Order,

Source§

impl<T, U, V, W, X, Y> FlavoredOrder for And<T, U, V, W, X, Y>