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