pub enum JoinType {
JoinCross(JoinCross),
JoinFull(JoinFull),
JoinInner(JoinInner),
JoinLeft(JoinLeft),
JoinRight(JoinRight),
}
Variants§
JoinCross(JoinCross)
JoinFull(JoinFull)
JoinInner(JoinInner)
JoinLeft(JoinLeft)
JoinRight(JoinRight)
Trait Implementations§
Source§impl AstNode for JoinType
impl AstNode for JoinType
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,
impl Eq for JoinType
impl StructuralPartialEq for JoinType
Auto Trait Implementations§
impl Freeze for JoinType
impl !RefUnwindSafe for JoinType
impl !Send for JoinType
impl !Sync for JoinType
impl Unpin for JoinType
impl !UnwindSafe for JoinType
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