pub enum AlterTableRename {
Table {
new_name: String,
},
Column {
column: String,
new_name: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for AlterTableRename
impl Clone for AlterTableRename
Source§fn clone(&self) -> AlterTableRename
fn clone(&self) -> AlterTableRename
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 AlterTableRename
impl Debug for AlterTableRename
impl Eq for AlterTableRename
Source§impl PartialEq for AlterTableRename
impl PartialEq for AlterTableRename
impl StructuralPartialEq for AlterTableRename
Auto Trait Implementations§
impl Freeze for AlterTableRename
impl RefUnwindSafe for AlterTableRename
impl Send for AlterTableRename
impl Sync for AlterTableRename
impl Unpin for AlterTableRename
impl UnsafeUnpin for AlterTableRename
impl UnwindSafe for AlterTableRename
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