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