pub enum AlterSchemaAction<'a> {
RenameTo {
rename_to_span: Span,
new_name: QualifiedName<'a>,
},
OwnerTo {
owner_to_span: Span,
new_owner: AlterTableOwner<'a>,
},
}Variants§
Trait Implementations§
Source§impl<'a> Clone for AlterSchemaAction<'a>
impl<'a> Clone for AlterSchemaAction<'a>
Source§fn clone(&self) -> AlterSchemaAction<'a>
fn clone(&self) -> AlterSchemaAction<'a>
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<'a> Debug for AlterSchemaAction<'a>
impl<'a> Debug for AlterSchemaAction<'a>
Auto Trait Implementations§
impl<'a> Freeze for AlterSchemaAction<'a>
impl<'a> RefUnwindSafe for AlterSchemaAction<'a>
impl<'a> Send for AlterSchemaAction<'a>
impl<'a> Sync for AlterSchemaAction<'a>
impl<'a> Unpin for AlterSchemaAction<'a>
impl<'a> UnsafeUnpin for AlterSchemaAction<'a>
impl<'a> UnwindSafe for AlterSchemaAction<'a>
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