Struct datafusion_sql::parser::ExplainStatement
source · pub struct ExplainStatement {
pub analyze: bool,
pub verbose: bool,
pub statement: Box<Statement>,
}
Expand description
DataFusion specific EXPLAIN (needed so we can EXPLAIN datafusion specific COPY and other statements)
Fields§
§analyze: bool
§verbose: bool
§statement: Box<Statement>
Trait Implementations§
source§impl Clone for ExplainStatement
impl Clone for ExplainStatement
source§fn clone(&self) -> ExplainStatement
fn clone(&self) -> ExplainStatement
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 ExplainStatement
impl Debug for ExplainStatement
source§impl Display for ExplainStatement
impl Display for ExplainStatement
source§impl PartialEq<ExplainStatement> for ExplainStatement
impl PartialEq<ExplainStatement> for ExplainStatement
source§fn eq(&self, other: &ExplainStatement) -> bool
fn eq(&self, other: &ExplainStatement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ExplainStatement
impl StructuralEq for ExplainStatement
impl StructuralPartialEq for ExplainStatement
Auto Trait Implementations§
impl RefUnwindSafe for ExplainStatement
impl Send for ExplainStatement
impl Sync for ExplainStatement
impl Unpin for ExplainStatement
impl UnwindSafe for ExplainStatement
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.