pub struct DropTableStatement { /* private fields */ }Expand description
Implementations§
Source§impl DropTableStatement
impl DropTableStatement
Sourcepub fn take(&mut self) -> Self
pub fn take(&mut self) -> Self
Take the ownership of data in the current DropTableStatement
Sourcepub fn table<T>(&mut self, tbl: T) -> &mut Selfwhere
T: IntoTableRef,
pub fn table<T>(&mut self, tbl: T) -> &mut Selfwhere
T: IntoTableRef,
Sourcepub fn tables<I, T>(&mut self, tbls: I) -> &mut Selfwhere
I: IntoIterator<Item = T>,
T: IntoTableRef,
pub fn tables<I, T>(&mut self, tbls: I) -> &mut Selfwhere
I: IntoIterator<Item = T>,
T: IntoTableRef,
Trait Implementations§
Source§impl Clone for DropTableStatement
impl Clone for DropTableStatement
Source§fn clone(&self) -> DropTableStatement
fn clone(&self) -> DropTableStatement
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 DropTableStatement
impl Debug for DropTableStatement
Source§impl Default for DropTableStatement
impl Default for DropTableStatement
Source§impl QueryStatementBuilder for DropTableStatement
impl QueryStatementBuilder for DropTableStatement
Source§fn build_any(&self, query_builder: &dyn QueryBuilderTrait) -> (String, Values)
fn build_any(&self, query_builder: &dyn QueryBuilderTrait) -> (String, Values)
Build SQL statement for a database backend and collect query parameters Read more
impl QueryStatementWriter for DropTableStatement
Auto Trait Implementations§
impl Freeze for DropTableStatement
impl !RefUnwindSafe for DropTableStatement
impl !Send for DropTableStatement
impl !Sync for DropTableStatement
impl Unpin for DropTableStatement
impl UnsafeUnpin for DropTableStatement
impl !UnwindSafe for DropTableStatement
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