pub struct ExplainAggregateTerminalPlan { /* private fields */ }Expand description
ExplainAggregateTerminalPlan
Combined explain payload for one scalar aggregate terminal request. Includes logical explain projection plus executor route label.
Implementations§
Source§impl ExplainAggregateTerminalPlan
impl ExplainAggregateTerminalPlan
Sourcepub const fn query(&self) -> &ExplainPlan
pub const fn query(&self) -> &ExplainPlan
Borrow the underlying query explain payload.
Sourcepub const fn route(&self) -> ExplainAggregateTerminalRoute
pub const fn route(&self) -> ExplainAggregateTerminalRoute
Return projected aggregate terminal route.
Sourcepub const fn execution(&self) -> &ExplainExecutionDescriptor
pub const fn execution(&self) -> &ExplainExecutionDescriptor
Borrow projected execution descriptor.
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