pub struct ColumnRename {
pub table: String,
pub from: String,
pub to: String,
}Available on crate feature
std only.Expand description
A column rename operation
Fields§
§table: String§from: String§to: StringTrait Implementations§
Source§impl Clone for ColumnRename
impl Clone for ColumnRename
Source§fn clone(&self) -> ColumnRename
fn clone(&self) -> ColumnRename
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 moreAuto Trait Implementations§
impl Freeze for ColumnRename
impl RefUnwindSafe for ColumnRename
impl Send for ColumnRename
impl Sync for ColumnRename
impl Unpin for ColumnRename
impl UnsafeUnpin for ColumnRename
impl UnwindSafe for ColumnRename
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