pub struct RenameTable {
pub schema_name: String,
pub previous_table_name: String,
pub next_table_name: String,
}Expand description
Rename an existing table inside the same schema without recreating it.
Fields§
§schema_name: String§previous_table_name: String§next_table_name: StringImplementations§
Trait Implementations§
Source§impl Clone for RenameTable
impl Clone for RenameTable
Source§fn clone(&self) -> RenameTable
fn clone(&self) -> RenameTable
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 RenameTable
impl Debug for RenameTable
Source§impl PartialEq for RenameTable
impl PartialEq for RenameTable
Source§fn eq(&self, other: &RenameTable) -> bool
fn eq(&self, other: &RenameTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RenameTable
impl StructuralPartialEq for RenameTable
Auto Trait Implementations§
impl Freeze for RenameTable
impl RefUnwindSafe for RenameTable
impl Send for RenameTable
impl Sync for RenameTable
impl Unpin for RenameTable
impl UnsafeUnpin for RenameTable
impl UnwindSafe for RenameTable
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