Skip to main content

HasOrderBy

Trait HasOrderBy 

Source
pub trait HasOrderBy {
    // Required method
    fn order_by_mut(&mut self) -> &mut OrderBy;
}
Expand description

Anything with an ORDER BY: a statement, a Window definition, an aggregate’s ORDER BY inside its own parentheses, or the trailing ordering of a set operation (Combines).

Required Methods§

Source

fn order_by_mut(&mut self) -> &mut OrderBy

The ORDER BY clause to modify.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§