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