pub struct JoinClause<'a> { /* private fields */ }Implementations§
Source§impl<'a> JoinClause<'a>
impl<'a> JoinClause<'a>
Sourcepub fn node_id(&self) -> JoinClauseId
pub fn node_id(&self) -> JoinClauseId
The typed node ID of this node.
pub fn join_type(&self) -> JoinType
pub fn left(&self) -> Option<TableSource<'a>>
pub fn right(&self) -> Option<TableSource<'a>>
pub fn on_expr(&self) -> Option<Expr<'a>>
pub fn using_columns(&self) -> Option<ExprList<'a>>
Trait Implementations§
Source§impl<'a> Clone for JoinClause<'a>
impl<'a> Clone for JoinClause<'a>
Source§fn clone(&self) -> JoinClause<'a>
fn clone(&self) -> JoinClause<'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 JoinClause<'_>
impl Debug for JoinClause<'_>
Source§impl Display for JoinClause<'_>
impl Display for JoinClause<'_>
Source§impl<'a> From<JoinClause<'a>> for JoinClauseId
impl<'a> From<JoinClause<'a>> for JoinClauseId
Source§fn from(n: JoinClause<'a>) -> Self
fn from(n: JoinClause<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> GrammarNodeType<'a> for JoinClause<'a>
impl<'a> GrammarNodeType<'a> for JoinClause<'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 JoinClause<'a>
Auto Trait Implementations§
impl<'a> Freeze for JoinClause<'a>
impl<'a> !RefUnwindSafe for JoinClause<'a>
impl<'a> !Send for JoinClause<'a>
impl<'a> !Sync for JoinClause<'a>
impl<'a> Unpin for JoinClause<'a>
impl<'a> UnsafeUnpin for JoinClause<'a>
impl<'a> !UnwindSafe for JoinClause<'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