pub struct SortExpr {
pub fields: Vec<(String, OrderDirection)>,
}Expand description
SortExpr Schema-agnostic sort expression for dynamic query input. Lowered into a validated order spec at the intent boundary.
Fields§
§fields: Vec<(String, OrderDirection)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SortExpr
impl RefUnwindSafe for SortExpr
impl Send for SortExpr
impl Sync for SortExpr
impl Unpin for SortExpr
impl UnsafeUnpin for SortExpr
impl UnwindSafe for SortExpr
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