pub struct ParsedAlterTable {
pub table_name: String,
pub operation: AlterTableOperation,
}Expand description
Parsed ALTER TABLE statement.
Fields§
§table_name: String§operation: AlterTableOperationTrait Implementations§
Source§impl Clone for ParsedAlterTable
impl Clone for ParsedAlterTable
Source§fn clone(&self) -> ParsedAlterTable
fn clone(&self) -> ParsedAlterTable
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 ParsedAlterTable
impl RefUnwindSafe for ParsedAlterTable
impl Send for ParsedAlterTable
impl Sync for ParsedAlterTable
impl Unpin for ParsedAlterTable
impl UnsafeUnpin for ParsedAlterTable
impl UnwindSafe for ParsedAlterTable
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