pub struct AlterTableNode {
pub table_name: String,
pub operations: Vec<PlanAlterOperation>,
}Expand description
ALTER TABLE operation.
Fields§
§table_name: String§operations: Vec<PlanAlterOperation>Trait Implementations§
Source§impl Clone for AlterTableNode
impl Clone for AlterTableNode
Source§fn clone(&self) -> AlterTableNode
fn clone(&self) -> AlterTableNode
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 moreAuto Trait Implementations§
impl Freeze for AlterTableNode
impl RefUnwindSafe for AlterTableNode
impl Send for AlterTableNode
impl Sync for AlterTableNode
impl Unpin for AlterTableNode
impl UnsafeUnpin for AlterTableNode
impl UnwindSafe for AlterTableNode
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