pub enum ExplainStmt {
Show 14 variants
CompoundSelect(CompoundSelect),
CreateMaterializedView(CreateMaterializedView),
CreateTableAs(CreateTableAs),
Declare(Declare),
Delete(Delete),
Execute(Execute),
Insert(Insert),
Merge(Merge),
ParenSelect(ParenSelect),
Select(Select),
SelectInto(SelectInto),
Table(Table),
Update(Update),
Values(Values),
}Variants§
CompoundSelect(CompoundSelect)
CreateMaterializedView(CreateMaterializedView)
CreateTableAs(CreateTableAs)
Declare(Declare)
Delete(Delete)
Execute(Execute)
Insert(Insert)
Merge(Merge)
ParenSelect(ParenSelect)
Select(Select)
SelectInto(SelectInto)
Table(Table)
Update(Update)
Values(Values)
Trait Implementations§
Source§impl AstNode for ExplainStmt
impl AstNode for ExplainStmt
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§impl Clone for ExplainStmt
impl Clone for ExplainStmt
Source§fn clone(&self) -> ExplainStmt
fn clone(&self) -> ExplainStmt
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 ExplainStmt
impl Debug for ExplainStmt
Source§impl From<CompoundSelect> for ExplainStmt
impl From<CompoundSelect> for ExplainStmt
Source§fn from(node: CompoundSelect) -> ExplainStmt
fn from(node: CompoundSelect) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<CreateMaterializedView> for ExplainStmt
impl From<CreateMaterializedView> for ExplainStmt
Source§fn from(node: CreateMaterializedView) -> ExplainStmt
fn from(node: CreateMaterializedView) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<CreateTableAs> for ExplainStmt
impl From<CreateTableAs> for ExplainStmt
Source§fn from(node: CreateTableAs) -> ExplainStmt
fn from(node: CreateTableAs) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Declare> for ExplainStmt
impl From<Declare> for ExplainStmt
Source§fn from(node: Declare) -> ExplainStmt
fn from(node: Declare) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Delete> for ExplainStmt
impl From<Delete> for ExplainStmt
Source§fn from(node: Delete) -> ExplainStmt
fn from(node: Delete) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Execute> for ExplainStmt
impl From<Execute> for ExplainStmt
Source§fn from(node: Execute) -> ExplainStmt
fn from(node: Execute) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Insert> for ExplainStmt
impl From<Insert> for ExplainStmt
Source§fn from(node: Insert) -> ExplainStmt
fn from(node: Insert) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Merge> for ExplainStmt
impl From<Merge> for ExplainStmt
Source§fn from(node: Merge) -> ExplainStmt
fn from(node: Merge) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<ParenSelect> for ExplainStmt
impl From<ParenSelect> for ExplainStmt
Source§fn from(node: ParenSelect) -> ExplainStmt
fn from(node: ParenSelect) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Select> for ExplainStmt
impl From<Select> for ExplainStmt
Source§fn from(node: Select) -> ExplainStmt
fn from(node: Select) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<SelectInto> for ExplainStmt
impl From<SelectInto> for ExplainStmt
Source§fn from(node: SelectInto) -> ExplainStmt
fn from(node: SelectInto) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Table> for ExplainStmt
impl From<Table> for ExplainStmt
Source§fn from(node: Table) -> ExplainStmt
fn from(node: Table) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Update> for ExplainStmt
impl From<Update> for ExplainStmt
Source§fn from(node: Update) -> ExplainStmt
fn from(node: Update) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<Values> for ExplainStmt
impl From<Values> for ExplainStmt
Source§fn from(node: Values) -> ExplainStmt
fn from(node: Values) -> ExplainStmt
Converts to this type from the input type.
Source§impl Hash for ExplainStmt
impl Hash for ExplainStmt
Source§impl PartialEq for ExplainStmt
impl PartialEq for ExplainStmt
impl Eq for ExplainStmt
impl StructuralPartialEq for ExplainStmt
Auto Trait Implementations§
impl Freeze for ExplainStmt
impl !RefUnwindSafe for ExplainStmt
impl !Send for ExplainStmt
impl !Sync for ExplainStmt
impl Unpin for ExplainStmt
impl !UnwindSafe for ExplainStmt
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