pub enum ExplainType {
PhysicalPlan,
LogicalPlan,
Profile,
}Expand description
EXPLAIN type — what kind of plan to show.
Variants§
PhysicalPlan
EXPLAIN — show the physical plan (default).
LogicalPlan
EXPLAIN LOGICAL — show the logical plan.
Profile
EXPLAIN PROFILE — execute and show profile.
Trait Implementations§
Source§impl Clone for ExplainType
impl Clone for ExplainType
Source§fn clone(&self) -> ExplainType
fn clone(&self) -> ExplainType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExplainType
Source§impl Debug for ExplainType
impl Debug for ExplainType
Source§impl PartialEq for ExplainType
impl PartialEq for ExplainType
impl StructuralPartialEq for ExplainType
Auto Trait Implementations§
impl Freeze for ExplainType
impl RefUnwindSafe for ExplainType
impl Send for ExplainType
impl Sync for ExplainType
impl Unpin for ExplainType
impl UnsafeUnpin for ExplainType
impl UnwindSafe for ExplainType
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