pub struct TaggedDropMaterializedViewStatement {
pub if_exists: bool,
pub name: TaggedKeyspaceQualifiedName,
}Fields
if_exists: boolname: TaggedKeyspaceQualifiedNameTrait Implementations
sourceimpl Clone for TaggedDropMaterializedViewStatement
impl Clone for TaggedDropMaterializedViewStatement
sourcefn clone(&self) -> TaggedDropMaterializedViewStatement
fn clone(&self) -> TaggedDropMaterializedViewStatement
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 TaggedDropMaterializedViewStatement
impl<'a> CustomToTokens<'a> for TaggedDropMaterializedViewStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl From<TaggedDropMaterializedViewStatement> for TaggedMaterializedViewStatement
impl From<TaggedDropMaterializedViewStatement> for TaggedMaterializedViewStatement
sourcefn from(
original: TaggedDropMaterializedViewStatement
) -> TaggedMaterializedViewStatement
fn from(
original: TaggedDropMaterializedViewStatement
) -> TaggedMaterializedViewStatement
Converts to this type from the input type.
sourceimpl From<TaggedDropMaterializedViewStatement> for TaggedStatement
impl From<TaggedDropMaterializedViewStatement> for TaggedStatement
sourcefn from(v: TaggedDropMaterializedViewStatement) -> Self
fn from(v: TaggedDropMaterializedViewStatement) -> Self
Converts to this type from the input type.
sourceimpl Parse for TaggedDropMaterializedViewStatement
impl Parse for TaggedDropMaterializedViewStatement
type Output = TaggedDropMaterializedViewStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<TaggedDropMaterializedViewStatement> for TaggedDropMaterializedViewStatement
impl PartialEq<TaggedDropMaterializedViewStatement> for TaggedDropMaterializedViewStatement
sourcefn eq(&self, other: &TaggedDropMaterializedViewStatement) -> bool
fn eq(&self, other: &TaggedDropMaterializedViewStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TaggedDropMaterializedViewStatement) -> bool
fn ne(&self, other: &TaggedDropMaterializedViewStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for TaggedDropMaterializedViewStatement
impl ToTokens for TaggedDropMaterializedViewStatement
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 TaggedDropMaterializedViewStatement
impl StructuralEq for TaggedDropMaterializedViewStatement
impl StructuralPartialEq for TaggedDropMaterializedViewStatement
Auto Trait Implementations
impl RefUnwindSafe for TaggedDropMaterializedViewStatement
impl Send for TaggedDropMaterializedViewStatement
impl Sync for TaggedDropMaterializedViewStatement
impl Unpin for TaggedDropMaterializedViewStatement
impl UnwindSafe for TaggedDropMaterializedViewStatement
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