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: boolname: KeyspaceQualifiedNameselect_statement: SelectStatementprimary_key: PrimaryKeytable_opts: Option<TableOpts>Trait Implementations
sourceimpl Clone for CreateMaterializedViewStatement
impl Clone for CreateMaterializedViewStatement
sourcefn clone(&self) -> CreateMaterializedViewStatement
fn clone(&self) -> CreateMaterializedViewStatement
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 CreateMaterializedViewStatement
impl<'a> CustomToTokens<'a> for CreateMaterializedViewStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl From<CreateMaterializedViewStatement> for MaterializedViewStatement
impl From<CreateMaterializedViewStatement> for MaterializedViewStatement
sourcefn from(original: CreateMaterializedViewStatement) -> MaterializedViewStatement
fn from(original: CreateMaterializedViewStatement) -> MaterializedViewStatement
Converts to this type from the input type.
sourceimpl From<CreateMaterializedViewStatement> for Statement
impl From<CreateMaterializedViewStatement> for Statement
sourcefn from(v: CreateMaterializedViewStatement) -> Self
fn from(v: CreateMaterializedViewStatement) -> Self
Converts to this type from the input type.
sourceimpl Parse for CreateMaterializedViewStatement
impl Parse for CreateMaterializedViewStatement
type Output = CreateMaterializedViewStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<CreateMaterializedViewStatement> for CreateMaterializedViewStatement
impl PartialEq<CreateMaterializedViewStatement> for CreateMaterializedViewStatement
sourcefn eq(&self, other: &CreateMaterializedViewStatement) -> bool
fn eq(&self, other: &CreateMaterializedViewStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CreateMaterializedViewStatement) -> bool
fn ne(&self, other: &CreateMaterializedViewStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for CreateMaterializedViewStatement
impl ToTokens for CreateMaterializedViewStatement
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 StructuralPartialEq for CreateMaterializedViewStatement
Auto Trait Implementations
impl RefUnwindSafe for CreateMaterializedViewStatement
impl Send for CreateMaterializedViewStatement
impl Sync for CreateMaterializedViewStatement
impl Unpin for CreateMaterializedViewStatement
impl UnwindSafe for CreateMaterializedViewStatement
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