pub enum MaterializedViewStatement {
Create(CreateMaterializedViewStatement),
Alter(AlterMaterializedViewStatement),
Drop(DropMaterializedViewStatement),
}Variants
Create(CreateMaterializedViewStatement)
Alter(AlterMaterializedViewStatement)
Drop(DropMaterializedViewStatement)
Trait Implementations
sourceimpl Clone for MaterializedViewStatement
impl Clone for MaterializedViewStatement
sourcefn clone(&self) -> MaterializedViewStatement
fn clone(&self) -> MaterializedViewStatement
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 MaterializedViewStatement
impl<'a> CustomToTokens<'a> for MaterializedViewStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for MaterializedViewStatement
impl Debug for MaterializedViewStatement
sourceimpl Display for MaterializedViewStatement
impl Display for MaterializedViewStatement
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<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<DropMaterializedViewStatement> for MaterializedViewStatement
impl From<DropMaterializedViewStatement> for MaterializedViewStatement
sourcefn from(original: DropMaterializedViewStatement) -> MaterializedViewStatement
fn from(original: DropMaterializedViewStatement) -> MaterializedViewStatement
Converts to this type from the input type.
sourceimpl From<MaterializedViewStatement> for Statement
impl From<MaterializedViewStatement> for Statement
sourcefn from(original: MaterializedViewStatement) -> Statement
fn from(original: MaterializedViewStatement) -> Statement
Converts to this type from the input type.
sourceimpl FromStr for MaterializedViewStatement
impl FromStr for MaterializedViewStatement
sourceimpl Parse for MaterializedViewStatement
impl Parse for MaterializedViewStatement
type Output = MaterializedViewStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<MaterializedViewStatement> for MaterializedViewStatement
impl PartialEq<MaterializedViewStatement> for MaterializedViewStatement
sourcefn eq(&self, other: &MaterializedViewStatement) -> bool
fn eq(&self, other: &MaterializedViewStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &MaterializedViewStatement) -> bool
fn ne(&self, other: &MaterializedViewStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for MaterializedViewStatement
impl ToTokens for MaterializedViewStatement
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
sourceimpl TryFrom<Statement> for MaterializedViewStatement
impl TryFrom<Statement> for MaterializedViewStatement
impl StructuralPartialEq for MaterializedViewStatement
Auto Trait Implementations
impl RefUnwindSafe for MaterializedViewStatement
impl Send for MaterializedViewStatement
impl Sync for MaterializedViewStatement
impl Unpin for MaterializedViewStatement
impl UnwindSafe for MaterializedViewStatement
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