pub enum AlterTableAction {
AlterTable,
Rename,
RenameTo,
}
Expand description
All available params to be used in AlterTable::raw_before and AlterTable::raw_after methods on AlterTable builder
Variants§
AlterTable
Rename
Available on crate features
postgresql
and sqlite
only.RenameTo
Available on crate features
postgresql
and sqlite
only.Trait Implementations§
Source§impl Clone for AlterTableAction
impl Clone for AlterTableAction
Source§fn clone(&self) -> AlterTableAction
fn clone(&self) -> AlterTableAction
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 PartialEq for AlterTableAction
impl PartialEq for AlterTableAction
impl StructuralPartialEq for AlterTableAction
Auto Trait Implementations§
impl Freeze for AlterTableAction
impl RefUnwindSafe for AlterTableAction
impl Send for AlterTableAction
impl Sync for AlterTableAction
impl Unpin for AlterTableAction
impl UnwindSafe for AlterTableAction
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