pub enum AlterColumnAction {
SetType {
typ: Type,
using: Option<String>,
},
SetNullable(bool),
}
Variants§
Trait Implementations§
Source§impl Clone for AlterColumnAction
impl Clone for AlterColumnAction
Source§fn clone(&self) -> AlterColumnAction
fn clone(&self) -> AlterColumnAction
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 AlterColumnAction
impl Debug for AlterColumnAction
Source§impl PartialEq for AlterColumnAction
impl PartialEq for AlterColumnAction
impl Eq for AlterColumnAction
impl StructuralPartialEq for AlterColumnAction
Auto Trait Implementations§
impl Freeze for AlterColumnAction
impl RefUnwindSafe for AlterColumnAction
impl Send for AlterColumnAction
impl Sync for AlterColumnAction
impl Unpin for AlterColumnAction
impl UnwindSafe for AlterColumnAction
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