pub struct CreateTableAs { /* private fields */ }
Implementations§
Source§impl CreateTableAs
impl CreateTableAs
pub fn if_not_exists(&self) -> Option<IfNotExists>
pub fn on_commit(&self) -> Option<OnCommit>
pub fn path(&self) -> Option<Path>
pub fn stmt(&self) -> Option<Stmt>
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 table_token(&self) -> Option<SyntaxToken>
Trait Implementations§
Source§impl AstNode for CreateTableAs
impl AstNode for CreateTableAs
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 CreateTableAs
impl Clone for CreateTableAs
Source§fn clone(&self) -> CreateTableAs
fn clone(&self) -> CreateTableAs
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 CreateTableAs
impl Debug for CreateTableAs
Source§impl From<CreateTableAs> for Stmt
impl From<CreateTableAs> for Stmt
Source§fn from(node: CreateTableAs) -> Stmt
fn from(node: CreateTableAs) -> Stmt
Converts to this type from the input type.
Source§impl Hash for CreateTableAs
impl Hash for CreateTableAs
Source§impl PartialEq for CreateTableAs
impl PartialEq for CreateTableAs
impl Eq for CreateTableAs
impl StructuralPartialEq for CreateTableAs
Auto Trait Implementations§
impl Freeze for CreateTableAs
impl !RefUnwindSafe for CreateTableAs
impl !Send for CreateTableAs
impl !Sync for CreateTableAs
impl Unpin for CreateTableAs
impl !UnwindSafe for CreateTableAs
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