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