pub struct CreateViewStmt<'a> { /* private fields */ }Implementations§
Source§impl<'a> CreateViewStmt<'a>
impl<'a> CreateViewStmt<'a>
Sourcepub fn node_id(&self) -> CreateViewStmtId
pub fn node_id(&self) -> CreateViewStmtId
The typed node ID of this node.
pub fn view_name(&self) -> &'a str
pub fn schema(&self) -> &'a str
pub fn is_temp(&self) -> bool
pub fn if_not_exists(&self) -> bool
pub fn column_names(&self) -> Option<ExprList<'a>>
pub fn select(&self) -> Option<Select<'a>>
Trait Implementations§
Source§impl<'a> Clone for CreateViewStmt<'a>
impl<'a> Clone for CreateViewStmt<'a>
Source§fn clone(&self) -> CreateViewStmt<'a>
fn clone(&self) -> CreateViewStmt<'a>
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 CreateViewStmt<'_>
impl Debug for CreateViewStmt<'_>
Source§impl Display for CreateViewStmt<'_>
impl Display for CreateViewStmt<'_>
Source§impl<'a> From<CreateViewStmt<'a>> for CreateViewStmtId
impl<'a> From<CreateViewStmt<'a>> for CreateViewStmtId
Source§fn from(n: CreateViewStmt<'a>) -> Self
fn from(n: CreateViewStmt<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> GrammarNodeType<'a> for CreateViewStmt<'a>
impl<'a> GrammarNodeType<'a> for CreateViewStmt<'a>
Source§fn from_result(
stmt_result: &'a AnyParsedStatement<'a>,
id: AnyNodeId,
) -> Option<Self>
fn from_result( stmt_result: &'a AnyParsedStatement<'a>, id: AnyNodeId, ) -> Option<Self>
Resolve
id to Self, or None if null, invalid, or tag mismatch.impl<'a> Copy for CreateViewStmt<'a>
Auto Trait Implementations§
impl<'a> Freeze for CreateViewStmt<'a>
impl<'a> !RefUnwindSafe for CreateViewStmt<'a>
impl<'a> !Send for CreateViewStmt<'a>
impl<'a> !Sync for CreateViewStmt<'a>
impl<'a> Unpin for CreateViewStmt<'a>
impl<'a> UnsafeUnpin for CreateViewStmt<'a>
impl<'a> !UnwindSafe for CreateViewStmt<'a>
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