pub enum AlterIndexAction {
AlterSetStatistics(AlterSetStatistics),
AttachPartition(AttachPartition),
DependsOnExtension(DependsOnExtension),
NoDependsOnExtension(NoDependsOnExtension),
RenameTo(RenameTo),
ResetOptions(ResetOptions),
SetOptions(SetOptions),
SetTablespace(SetTablespace),
}Variants§
AlterSetStatistics(AlterSetStatistics)
AttachPartition(AttachPartition)
DependsOnExtension(DependsOnExtension)
NoDependsOnExtension(NoDependsOnExtension)
RenameTo(RenameTo)
ResetOptions(ResetOptions)
SetOptions(SetOptions)
SetTablespace(SetTablespace)
Trait Implementations§
Source§impl AstNode for AlterIndexAction
impl AstNode for AlterIndexAction
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 AlterIndexAction
impl Clone for AlterIndexAction
Source§fn clone(&self) -> AlterIndexAction
fn clone(&self) -> AlterIndexAction
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 AlterIndexAction
impl Debug for AlterIndexAction
Source§impl From<AlterSetStatistics> for AlterIndexAction
impl From<AlterSetStatistics> for AlterIndexAction
Source§fn from(node: AlterSetStatistics) -> AlterIndexAction
fn from(node: AlterSetStatistics) -> AlterIndexAction
Converts to this type from the input type.
Source§impl From<AttachPartition> for AlterIndexAction
impl From<AttachPartition> for AlterIndexAction
Source§fn from(node: AttachPartition) -> AlterIndexAction
fn from(node: AttachPartition) -> AlterIndexAction
Converts to this type from the input type.
Source§impl From<DependsOnExtension> for AlterIndexAction
impl From<DependsOnExtension> for AlterIndexAction
Source§fn from(node: DependsOnExtension) -> AlterIndexAction
fn from(node: DependsOnExtension) -> AlterIndexAction
Converts to this type from the input type.
Source§impl From<NoDependsOnExtension> for AlterIndexAction
impl From<NoDependsOnExtension> for AlterIndexAction
Source§fn from(node: NoDependsOnExtension) -> AlterIndexAction
fn from(node: NoDependsOnExtension) -> AlterIndexAction
Converts to this type from the input type.
Source§impl From<RenameTo> for AlterIndexAction
impl From<RenameTo> for AlterIndexAction
Source§fn from(node: RenameTo) -> AlterIndexAction
fn from(node: RenameTo) -> AlterIndexAction
Converts to this type from the input type.
Source§impl From<ResetOptions> for AlterIndexAction
impl From<ResetOptions> for AlterIndexAction
Source§fn from(node: ResetOptions) -> AlterIndexAction
fn from(node: ResetOptions) -> AlterIndexAction
Converts to this type from the input type.
Source§impl From<SetOptions> for AlterIndexAction
impl From<SetOptions> for AlterIndexAction
Source§fn from(node: SetOptions) -> AlterIndexAction
fn from(node: SetOptions) -> AlterIndexAction
Converts to this type from the input type.
Source§impl From<SetTablespace> for AlterIndexAction
impl From<SetTablespace> for AlterIndexAction
Source§fn from(node: SetTablespace) -> AlterIndexAction
fn from(node: SetTablespace) -> AlterIndexAction
Converts to this type from the input type.
Source§impl Hash for AlterIndexAction
impl Hash for AlterIndexAction
Source§impl PartialEq for AlterIndexAction
impl PartialEq for AlterIndexAction
impl Eq for AlterIndexAction
impl StructuralPartialEq for AlterIndexAction
Auto Trait Implementations§
impl Freeze for AlterIndexAction
impl !RefUnwindSafe for AlterIndexAction
impl !Send for AlterIndexAction
impl !Sync for AlterIndexAction
impl Unpin for AlterIndexAction
impl !UnwindSafe for AlterIndexAction
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