pub struct DropTable {
pub name: Name,
pub if_exists: bool,
}Expand description
A statement to drop a SQL table.
Fields§
§name: NameName of the table.
if_exists: boolWhether or not to add an IF EXISTS clause.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DropTable
impl RefUnwindSafe for DropTable
impl Send for DropTable
impl Sync for DropTable
impl Unpin for DropTable
impl UnwindSafe for DropTable
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