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§
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.