pub struct DropTableStmt {
pub table_name: String,
pub if_exists: bool,
pub quoted: bool,
}Expand description
DROP TABLE statement
Fields§
§table_name: StringTable name (possibly qualified as schema.table)
if_exists: bool§quoted: boolWhether the table name was quoted (delimited) in the original SQL.
Trait Implementations§
Source§impl Clone for DropTableStmt
impl Clone for DropTableStmt
Source§fn clone(&self) -> DropTableStmt
fn clone(&self) -> DropTableStmt
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 DropTableStmt
impl Debug for DropTableStmt
Source§impl PartialEq for DropTableStmt
impl PartialEq for DropTableStmt
impl StructuralPartialEq for DropTableStmt
Auto Trait Implementations§
impl Freeze for DropTableStmt
impl RefUnwindSafe for DropTableStmt
impl Send for DropTableStmt
impl Sync for DropTableStmt
impl Unpin for DropTableStmt
impl UnwindSafe for DropTableStmt
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