Struct datafusion_common::config::ExplainOptions
source · #[non_exhaustive]pub struct ExplainOptions {
pub logical_plan_only: bool,
pub physical_plan_only: bool,
pub show_statistics: bool,
}
Expand description
Options controlling explain output
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.logical_plan_only: bool
When set to true, the explain statement will only print logical plans
physical_plan_only: bool
When set to true, the explain statement will only print physical plans
show_statistics: bool
When set to true, the explain statement will print operator statistics for physical plans
Trait Implementations§
source§impl Clone for ExplainOptions
impl Clone for ExplainOptions
source§fn clone(&self) -> ExplainOptions
fn clone(&self) -> ExplainOptions
Returns a copy 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 ExplainOptions
impl Debug for ExplainOptions
Auto Trait Implementations§
impl RefUnwindSafe for ExplainOptions
impl Send for ExplainOptions
impl Sync for ExplainOptions
impl Unpin for ExplainOptions
impl UnwindSafe for ExplainOptions
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