pub enum ExplainAggregateTerminalRoute {
Standard,
IndexSeekFirst {
fetch: usize,
},
IndexSeekLast {
fetch: usize,
},
}Expand description
ExplainAggregateTerminalRoute
Executor-projected scalar aggregate terminal route label for explain output. Keeps seek-edge fast-path labels explicit without exposing route internals.
Variants§
Trait Implementations§
Source§impl Clone for ExplainAggregateTerminalRoute
impl Clone for ExplainAggregateTerminalRoute
Source§fn clone(&self) -> ExplainAggregateTerminalRoute
fn clone(&self) -> ExplainAggregateTerminalRoute
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for ExplainAggregateTerminalRoute
impl PartialEq for ExplainAggregateTerminalRoute
Source§fn eq(&self, other: &ExplainAggregateTerminalRoute) -> bool
fn eq(&self, other: &ExplainAggregateTerminalRoute) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ExplainAggregateTerminalRoute
impl Eq for ExplainAggregateTerminalRoute
impl StructuralPartialEq for ExplainAggregateTerminalRoute
Auto Trait Implementations§
impl Freeze for ExplainAggregateTerminalRoute
impl RefUnwindSafe for ExplainAggregateTerminalRoute
impl Send for ExplainAggregateTerminalRoute
impl Sync for ExplainAggregateTerminalRoute
impl Unpin for ExplainAggregateTerminalRoute
impl UnsafeUnpin for ExplainAggregateTerminalRoute
impl UnwindSafe for ExplainAggregateTerminalRoute
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