pub struct ExplainAggregateTerminalPlan {
pub query: ExplainPlan,
pub terminal: AggregateKind,
pub route: ExplainAggregateTerminalRoute,
pub execution: ExplainExecutionDescriptor,
}Expand description
ExplainAggregateTerminalPlan
Combined explain payload for one scalar aggregate terminal request. Includes logical explain projection plus executor route label.
Fields§
§query: ExplainPlan§terminal: AggregateKind§route: ExplainAggregateTerminalRoute§execution: ExplainExecutionDescriptorImplementations§
Trait Implementations§
Source§impl Clone for ExplainAggregateTerminalPlan
impl Clone for ExplainAggregateTerminalPlan
Source§fn clone(&self) -> ExplainAggregateTerminalPlan
fn clone(&self) -> ExplainAggregateTerminalPlan
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 Debug for ExplainAggregateTerminalPlan
impl Debug for ExplainAggregateTerminalPlan
Source§impl PartialEq for ExplainAggregateTerminalPlan
impl PartialEq for ExplainAggregateTerminalPlan
Source§fn eq(&self, other: &ExplainAggregateTerminalPlan) -> bool
fn eq(&self, other: &ExplainAggregateTerminalPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExplainAggregateTerminalPlan
impl StructuralPartialEq for ExplainAggregateTerminalPlan
Auto Trait Implementations§
impl Freeze for ExplainAggregateTerminalPlan
impl RefUnwindSafe for ExplainAggregateTerminalPlan
impl Send for ExplainAggregateTerminalPlan
impl Sync for ExplainAggregateTerminalPlan
impl Unpin for ExplainAggregateTerminalPlan
impl UnsafeUnpin for ExplainAggregateTerminalPlan
impl UnwindSafe for ExplainAggregateTerminalPlan
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