pub enum AlterViewAction {
AlterViewColumn(AlterViewColumn),
OwnerTo(OwnerTo),
RenameColumn(RenameColumn),
ResetOptions(ResetOptions),
SetOptions(SetOptions),
SetSchema(SetSchema),
ViewRenameTo(ViewRenameTo),
}Variants§
AlterViewColumn(AlterViewColumn)
OwnerTo(OwnerTo)
RenameColumn(RenameColumn)
ResetOptions(ResetOptions)
SetOptions(SetOptions)
SetSchema(SetSchema)
ViewRenameTo(ViewRenameTo)
Trait Implementations§
Source§impl AstNode for AlterViewAction
impl AstNode for AlterViewAction
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 AlterViewAction
impl Clone for AlterViewAction
Source§fn clone(&self) -> AlterViewAction
fn clone(&self) -> AlterViewAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AlterViewAction
impl Debug for AlterViewAction
impl Eq for AlterViewAction
Source§impl From<AlterViewColumn> for AlterViewAction
impl From<AlterViewColumn> for AlterViewAction
Source§fn from(node: AlterViewColumn) -> AlterViewAction
fn from(node: AlterViewColumn) -> AlterViewAction
Converts to this type from the input type.
Source§impl From<OwnerTo> for AlterViewAction
impl From<OwnerTo> for AlterViewAction
Source§fn from(node: OwnerTo) -> AlterViewAction
fn from(node: OwnerTo) -> AlterViewAction
Converts to this type from the input type.
Source§impl From<RenameColumn> for AlterViewAction
impl From<RenameColumn> for AlterViewAction
Source§fn from(node: RenameColumn) -> AlterViewAction
fn from(node: RenameColumn) -> AlterViewAction
Converts to this type from the input type.
Source§impl From<ResetOptions> for AlterViewAction
impl From<ResetOptions> for AlterViewAction
Source§fn from(node: ResetOptions) -> AlterViewAction
fn from(node: ResetOptions) -> AlterViewAction
Converts to this type from the input type.
Source§impl From<SetOptions> for AlterViewAction
impl From<SetOptions> for AlterViewAction
Source§fn from(node: SetOptions) -> AlterViewAction
fn from(node: SetOptions) -> AlterViewAction
Converts to this type from the input type.
Source§impl From<SetSchema> for AlterViewAction
impl From<SetSchema> for AlterViewAction
Source§fn from(node: SetSchema) -> AlterViewAction
fn from(node: SetSchema) -> AlterViewAction
Converts to this type from the input type.
Source§impl From<ViewRenameTo> for AlterViewAction
impl From<ViewRenameTo> for AlterViewAction
Source§fn from(node: ViewRenameTo) -> AlterViewAction
fn from(node: ViewRenameTo) -> AlterViewAction
Converts to this type from the input type.
Source§impl Hash for AlterViewAction
impl Hash for AlterViewAction
Source§impl PartialEq for AlterViewAction
impl PartialEq for AlterViewAction
impl StructuralPartialEq for AlterViewAction
Auto Trait Implementations§
impl !RefUnwindSafe for AlterViewAction
impl !Send for AlterViewAction
impl !Sync for AlterViewAction
impl !UnwindSafe for AlterViewAction
impl Freeze for AlterViewAction
impl Unpin for AlterViewAction
impl UnsafeUnpin for AlterViewAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more