Struct datafusion::config::ExplainOptions
source · #[non_exhaustive]pub struct ExplainOptions {
pub logical_plan_only: bool,
pub physical_plan_only: 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
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
source§impl Default for ExplainOptions
impl Default for ExplainOptions
source§fn default() -> ExplainOptions
fn default() -> ExplainOptions
Returns the “default value” for a type. Read more