pub struct SortNode {
pub input: Box<PlanNode>,
pub order_by: Vec<SortKey>,
}Expand description
Sort operation.
Fields§
§input: Box<PlanNode>§order_by: Vec<SortKey>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SortNode
impl RefUnwindSafe for SortNode
impl Send for SortNode
impl Sync for SortNode
impl Unpin for SortNode
impl UnsafeUnpin for SortNode
impl UnwindSafe for SortNode
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