pub struct AlterColumnOp {
pub table: String,
pub column: String,
pub change: AlterColumnChange,
}Expand description
Alter column operation.
Fields§
§table: StringTable name.
column: StringColumn name.
change: AlterColumnChangeThe change to apply.
Trait Implementations§
Source§impl Clone for AlterColumnOp
impl Clone for AlterColumnOp
Source§fn clone(&self) -> AlterColumnOp
fn clone(&self) -> AlterColumnOp
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 AlterColumnOp
impl Debug for AlterColumnOp
Source§impl From<AlterColumnOp> for Operation
impl From<AlterColumnOp> for Operation
Source§fn from(op: AlterColumnOp) -> Self
fn from(op: AlterColumnOp) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AlterColumnOp
impl PartialEq for AlterColumnOp
impl StructuralPartialEq for AlterColumnOp
Auto Trait Implementations§
impl Freeze for AlterColumnOp
impl RefUnwindSafe for AlterColumnOp
impl Send for AlterColumnOp
impl Sync for AlterColumnOp
impl Unpin for AlterColumnOp
impl UnwindSafe for AlterColumnOp
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