pub struct TaggedCreateMaterializedViewStatement {
pub if_not_exists: bool,
pub name: TaggedKeyspaceQualifiedName,
pub select_statement: Tag<TaggedSelectStatement>,
pub primary_key: Tag<PrimaryKey>,
pub table_opts: Option<Tag<TableOpts>>,
}
Fields§
§if_not_exists: bool
§name: TaggedKeyspaceQualifiedName
§select_statement: Tag<TaggedSelectStatement>
§primary_key: Tag<PrimaryKey>
§table_opts: Option<Tag<TableOpts>>
Trait Implementations§
Source§impl Clone for TaggedCreateMaterializedViewStatement
impl Clone for TaggedCreateMaterializedViewStatement
Source§fn clone(&self) -> TaggedCreateMaterializedViewStatement
fn clone(&self) -> TaggedCreateMaterializedViewStatement
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 TaggedCreateMaterializedViewStatement
impl<'a> CustomToTokens<'a> for TaggedCreateMaterializedViewStatement
Source§impl From<TaggedCreateMaterializedViewStatement> for TaggedMaterializedViewStatement
impl From<TaggedCreateMaterializedViewStatement> for TaggedMaterializedViewStatement
Source§fn from(
original: TaggedCreateMaterializedViewStatement,
) -> TaggedMaterializedViewStatement
fn from( original: TaggedCreateMaterializedViewStatement, ) -> TaggedMaterializedViewStatement
Converts to this type from the input type.
Source§impl From<TaggedCreateMaterializedViewStatement> for TaggedStatement
impl From<TaggedCreateMaterializedViewStatement> for TaggedStatement
Source§fn from(v: TaggedCreateMaterializedViewStatement) -> Self
fn from(v: TaggedCreateMaterializedViewStatement) -> Self
Converts to this type from the input type.
Source§impl Parse for TaggedCreateMaterializedViewStatement
impl Parse for TaggedCreateMaterializedViewStatement
type Output = TaggedCreateMaterializedViewStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedCreateMaterializedViewStatement
impl PartialEq for TaggedCreateMaterializedViewStatement
Source§fn eq(&self, other: &TaggedCreateMaterializedViewStatement) -> bool
fn eq(&self, other: &TaggedCreateMaterializedViewStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for TaggedCreateMaterializedViewStatement
impl ToTokens for TaggedCreateMaterializedViewStatement
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 StructuralPartialEq for TaggedCreateMaterializedViewStatement
Auto Trait Implementations§
impl Freeze for TaggedCreateMaterializedViewStatement
impl RefUnwindSafe for TaggedCreateMaterializedViewStatement
impl Send for TaggedCreateMaterializedViewStatement
impl Sync for TaggedCreateMaterializedViewStatement
impl Unpin for TaggedCreateMaterializedViewStatement
impl UnwindSafe for TaggedCreateMaterializedViewStatement
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