pub struct DropViewStatement { /* private fields */ }Expand description
Implementations§
Source§impl DropViewStatement
impl DropViewStatement
Sourcepub fn take(&mut self) -> Self
pub fn take(&mut self) -> Self
Take the ownership of data in the current DropViewStatement
Sourcepub fn names<I, N>(&mut self, names: I) -> &mut Selfwhere
I: IntoIterator<Item = N>,
N: IntoIden,
pub fn names<I, N>(&mut self, names: I) -> &mut Selfwhere
I: IntoIterator<Item = N>,
N: IntoIden,
Sourcepub fn materialized(&mut self, materialized: bool) -> &mut Self
pub fn materialized(&mut self, materialized: bool) -> &mut Self
Trait Implementations§
Source§impl Clone for DropViewStatement
impl Clone for DropViewStatement
Source§fn clone(&self) -> DropViewStatement
fn clone(&self) -> DropViewStatement
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 DropViewStatement
impl Debug for DropViewStatement
Source§impl Default for DropViewStatement
impl Default for DropViewStatement
Source§impl QueryStatementBuilder for DropViewStatement
impl QueryStatementBuilder for DropViewStatement
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 DropViewStatement
Auto Trait Implementations§
impl Freeze for DropViewStatement
impl !RefUnwindSafe for DropViewStatement
impl !Send for DropViewStatement
impl !Sync for DropViewStatement
impl Unpin for DropViewStatement
impl UnsafeUnpin for DropViewStatement
impl !UnwindSafe for DropViewStatement
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