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 (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 AlterColumnAction
impl Debug for AlterColumnAction
impl Eq for AlterColumnAction
Source§impl PartialEq for AlterColumnAction
impl PartialEq for AlterColumnAction
Source§fn eq(&self, other: &AlterColumnAction) -> bool
fn eq(&self, other: &AlterColumnAction) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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