pub struct ResolvedOrderTarget {
pub hops: Vec<RelationHop>,
pub column: &'static str,
}Expand description
A dotted sort key resolved down to the relation hops to traverse plus
the terminal scalar column, ready for crate::order_value_sql.
Fields§
§hops: Vec<RelationHop>§column: &'static strAuto Trait Implementations§
impl Freeze for ResolvedOrderTarget
impl RefUnwindSafe for ResolvedOrderTarget
impl Send for ResolvedOrderTarget
impl Sync for ResolvedOrderTarget
impl Unpin for ResolvedOrderTarget
impl UnsafeUnpin for ResolvedOrderTarget
impl UnwindSafe for ResolvedOrderTarget
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