pub struct OrderOptions {
pub order_by: String,
pub order_direction: Option<OrderDir>,
}
Expand description
Select query Order options
Fields§
§order_by: String
§order_direction: Option<OrderDir>
Trait Implementations§
Source§impl Clone for OrderOptions
impl Clone for OrderOptions
Source§fn clone(&self) -> OrderOptions
fn clone(&self) -> OrderOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for OrderOptions
impl RefUnwindSafe for OrderOptions
impl Send for OrderOptions
impl Sync for OrderOptions
impl Unpin for OrderOptions
impl UnwindSafe for OrderOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more