pub enum SelectVariant {
CompoundSelect(CompoundSelect),
ParenSelect(ParenSelect),
Select(Select),
SelectInto(SelectInto),
Table(Table),
Values(Values),
}Variants§
CompoundSelect(CompoundSelect)
ParenSelect(ParenSelect)
Select(Select)
SelectInto(SelectInto)
Table(Table)
Values(Values)
Trait Implementations§
Source§impl AstNode for SelectVariant
impl AstNode for SelectVariant
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 SelectVariant
impl Clone for SelectVariant
Source§fn clone(&self) -> SelectVariant
fn clone(&self) -> SelectVariant
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 SelectVariant
impl Debug for SelectVariant
Source§impl From<CompoundSelect> for SelectVariant
impl From<CompoundSelect> for SelectVariant
Source§fn from(node: CompoundSelect) -> SelectVariant
fn from(node: CompoundSelect) -> SelectVariant
Converts to this type from the input type.
Source§impl From<ParenSelect> for SelectVariant
impl From<ParenSelect> for SelectVariant
Source§fn from(node: ParenSelect) -> SelectVariant
fn from(node: ParenSelect) -> SelectVariant
Converts to this type from the input type.
Source§impl From<Select> for SelectVariant
impl From<Select> for SelectVariant
Source§fn from(node: Select) -> SelectVariant
fn from(node: Select) -> SelectVariant
Converts to this type from the input type.
Source§impl From<SelectInto> for SelectVariant
impl From<SelectInto> for SelectVariant
Source§fn from(node: SelectInto) -> SelectVariant
fn from(node: SelectInto) -> SelectVariant
Converts to this type from the input type.
Source§impl From<Table> for SelectVariant
impl From<Table> for SelectVariant
Source§fn from(node: Table) -> SelectVariant
fn from(node: Table) -> SelectVariant
Converts to this type from the input type.
Source§impl From<Values> for SelectVariant
impl From<Values> for SelectVariant
Source§fn from(node: Values) -> SelectVariant
fn from(node: Values) -> SelectVariant
Converts to this type from the input type.
Source§impl Hash for SelectVariant
impl Hash for SelectVariant
Source§impl PartialEq for SelectVariant
impl PartialEq for SelectVariant
impl Eq for SelectVariant
impl StructuralPartialEq for SelectVariant
Auto Trait Implementations§
impl Freeze for SelectVariant
impl !RefUnwindSafe for SelectVariant
impl !Send for SelectVariant
impl !Sync for SelectVariant
impl Unpin for SelectVariant
impl !UnwindSafe for SelectVariant
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