pub struct OrderPath {
pub name: Vec<u8>,
pub on: Vec<(Vec<u8>, bool)>,
}Expand description
One composite-sort path (ORDERPATH — cookbook §8 mechanized):
compiles to a composite Range index named <table>.<name>.
Fields§
§name: Vec<u8>Path name (the compiled index’s suffix).
on: Vec<(Vec<u8>, bool)>(column, desc) in sort-significance order.
Trait Implementations§
impl Eq for OrderPath
impl StructuralPartialEq for OrderPath
Auto Trait Implementations§
impl Freeze for OrderPath
impl RefUnwindSafe for OrderPath
impl Send for OrderPath
impl Sync for OrderPath
impl Unpin for OrderPath
impl UnsafeUnpin for OrderPath
impl UnwindSafe for OrderPath
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