pub struct DropTableExpr {
pub table: String,
pub if_exists: bool,
}Expand description
drop [if exists] User
Fields§
§table: String§if_exists: booldrop if exists — a missing table is a no-op instead of an error.
Trait Implementations§
Source§impl Clone for DropTableExpr
impl Clone for DropTableExpr
Source§fn clone(&self) -> DropTableExpr
fn clone(&self) -> DropTableExpr
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 DropTableExpr
impl Debug for DropTableExpr
Source§impl PartialEq for DropTableExpr
impl PartialEq for DropTableExpr
impl StructuralPartialEq for DropTableExpr
Auto Trait Implementations§
impl Freeze for DropTableExpr
impl RefUnwindSafe for DropTableExpr
impl Send for DropTableExpr
impl Sync for DropTableExpr
impl Unpin for DropTableExpr
impl UnsafeUnpin for DropTableExpr
impl UnwindSafe for DropTableExpr
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