pub struct DropMaterializedViewStatement {
pub if_exists: bool,
pub name: KeyspaceQualifiedName,
}
Fields§
§if_exists: bool
§name: KeyspaceQualifiedName
Trait Implementations§
Source§impl Clone for DropMaterializedViewStatement
impl Clone for DropMaterializedViewStatement
Source§fn clone(&self) -> DropMaterializedViewStatement
fn clone(&self) -> DropMaterializedViewStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for DropMaterializedViewStatement
impl<'a> CustomToTokens<'a> for DropMaterializedViewStatement
Source§impl From<DropMaterializedViewStatement> for MaterializedViewStatement
impl From<DropMaterializedViewStatement> for MaterializedViewStatement
Source§fn from(original: DropMaterializedViewStatement) -> MaterializedViewStatement
fn from(original: DropMaterializedViewStatement) -> MaterializedViewStatement
Converts to this type from the input type.
Source§impl From<DropMaterializedViewStatement> for Statement
impl From<DropMaterializedViewStatement> for Statement
Source§fn from(v: DropMaterializedViewStatement) -> Self
fn from(v: DropMaterializedViewStatement) -> Self
Converts to this type from the input type.
Source§impl Parse for DropMaterializedViewStatement
impl Parse for DropMaterializedViewStatement
type Output = DropMaterializedViewStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for DropMaterializedViewStatement
impl PartialEq for DropMaterializedViewStatement
Source§fn eq(&self, other: &DropMaterializedViewStatement) -> bool
fn eq(&self, other: &DropMaterializedViewStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for DropMaterializedViewStatement
impl ToTokens for DropMaterializedViewStatement
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for DropMaterializedViewStatement
impl StructuralPartialEq for DropMaterializedViewStatement
Auto Trait Implementations§
impl Freeze for DropMaterializedViewStatement
impl RefUnwindSafe for DropMaterializedViewStatement
impl Send for DropMaterializedViewStatement
impl Sync for DropMaterializedViewStatement
impl Unpin for DropMaterializedViewStatement
impl UnwindSafe for DropMaterializedViewStatement
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