pub struct CreateMaterializedView { /* private fields */ }Implementations§
Source§impl CreateMaterializedView
impl CreateMaterializedView
pub fn column_list(&self) -> Option<ColumnList>
pub fn if_not_exists(&self) -> Option<IfNotExists>
pub fn path(&self) -> Option<Path>
pub fn query(&self) -> Option<SelectVariant>
pub fn tablespace(&self) -> Option<Tablespace>
pub fn using_method(&self) -> Option<UsingMethod>
pub fn with_data(&self) -> Option<WithData>
pub fn with_no_data(&self) -> Option<WithNoData>
pub fn with_params(&self) -> Option<WithParams>
pub fn as_token(&self) -> Option<SyntaxToken>
pub fn create_token(&self) -> Option<SyntaxToken>
pub fn materialized_token(&self) -> Option<SyntaxToken>
pub fn view_token(&self) -> Option<SyntaxToken>
Trait Implementations§
Source§impl AstNode for CreateMaterializedView
impl AstNode for CreateMaterializedView
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§impl Clone for CreateMaterializedView
impl Clone for CreateMaterializedView
Source§fn clone(&self) -> CreateMaterializedView
fn clone(&self) -> CreateMaterializedView
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateMaterializedView
impl Debug for CreateMaterializedView
Source§impl From<CreateMaterializedView> for ExplainStmt
impl From<CreateMaterializedView> for ExplainStmt
Source§fn from(node: CreateMaterializedView) -> ExplainStmt
fn from(node: CreateMaterializedView) -> ExplainStmt
Converts to this type from the input type.
Source§impl From<CreateMaterializedView> for Stmt
impl From<CreateMaterializedView> for Stmt
Source§fn from(node: CreateMaterializedView) -> Stmt
fn from(node: CreateMaterializedView) -> Stmt
Converts to this type from the input type.
Source§impl Hash for CreateMaterializedView
impl Hash for CreateMaterializedView
Source§impl PartialEq for CreateMaterializedView
impl PartialEq for CreateMaterializedView
impl Eq for CreateMaterializedView
impl StructuralPartialEq for CreateMaterializedView
Auto Trait Implementations§
impl Freeze for CreateMaterializedView
impl !RefUnwindSafe for CreateMaterializedView
impl !Send for CreateMaterializedView
impl !Sync for CreateMaterializedView
impl Unpin for CreateMaterializedView
impl !UnwindSafe for CreateMaterializedView
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