pub struct DropMaterializedViewStatement {
    pub if_exists: bool,
    pub name: KeyspaceQualifiedName,
}Fields
if_exists: boolname: KeyspaceQualifiedNameTrait Implementations
sourceimpl Clone for DropMaterializedViewStatement
 
impl Clone for DropMaterializedViewStatement
sourcefn clone(&self) -> DropMaterializedViewStatement
 
fn clone(&self) -> DropMaterializedViewStatement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> CustomToTokens<'a> for DropMaterializedViewStatement
 
impl<'a> CustomToTokens<'a> for DropMaterializedViewStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for DropMaterializedViewStatement
 
impl Debug for DropMaterializedViewStatement
sourceimpl From<DropMaterializedViewStatement> for MaterializedViewStatement
 
impl From<DropMaterializedViewStatement> for MaterializedViewStatement
sourcefn from(original: DropMaterializedViewStatement) -> MaterializedViewStatement
 
fn from(original: DropMaterializedViewStatement) -> MaterializedViewStatement
Converts to this type from the input type.
sourceimpl From<DropMaterializedViewStatement> for Statement
 
impl From<DropMaterializedViewStatement> for Statement
sourcefn from(v: DropMaterializedViewStatement) -> Self
 
fn from(v: DropMaterializedViewStatement) -> Self
Converts to this type from the input type.
sourceimpl Parse for DropMaterializedViewStatement
 
impl Parse for DropMaterializedViewStatement
type Output = DropMaterializedViewStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<DropMaterializedViewStatement> for DropMaterializedViewStatement
 
impl PartialEq<DropMaterializedViewStatement> for DropMaterializedViewStatement
sourcefn eq(&self, other: &DropMaterializedViewStatement) -> bool
 
fn eq(&self, other: &DropMaterializedViewStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DropMaterializedViewStatement) -> bool
 
fn ne(&self, other: &DropMaterializedViewStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for DropMaterializedViewStatement
 
impl ToTokens for DropMaterializedViewStatement
sourcefn to_tokens(&self, tokens: &mut TokenStream)
 
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
 
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
 
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
impl Eq for DropMaterializedViewStatement
impl StructuralEq for DropMaterializedViewStatement
impl StructuralPartialEq for DropMaterializedViewStatement
Auto Trait Implementations
impl RefUnwindSafe for DropMaterializedViewStatement
impl Send for DropMaterializedViewStatement
impl Sync for DropMaterializedViewStatement
impl Unpin for DropMaterializedViewStatement
impl UnwindSafe for DropMaterializedViewStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more