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