pub struct DropColumnStmt {
pub table_name: String,
pub column_name: String,
pub if_exists: bool,
}Expand description
DROP COLUMN operation
Fields§
§table_name: String§column_name: String§if_exists: boolTrait Implementations§
Source§impl Clone for DropColumnStmt
impl Clone for DropColumnStmt
Source§fn clone(&self) -> DropColumnStmt
fn clone(&self) -> DropColumnStmt
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 DropColumnStmt
impl Debug for DropColumnStmt
Source§impl PartialEq for DropColumnStmt
impl PartialEq for DropColumnStmt
impl StructuralPartialEq for DropColumnStmt
Auto Trait Implementations§
impl Freeze for DropColumnStmt
impl RefUnwindSafe for DropColumnStmt
impl Send for DropColumnStmt
impl Sync for DropColumnStmt
impl Unpin for DropColumnStmt
impl UnwindSafe for DropColumnStmt
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