Enum sql_parser::ast::JoinOperator [−][src]
pub enum JoinOperator<T: AstInfo> {
Inner(JoinConstraint<T>),
LeftOuter(JoinConstraint<T>),
RightOuter(JoinConstraint<T>),
FullOuter(JoinConstraint<T>),
CrossJoin,
}
Variants
Inner(JoinConstraint<T>)
Tuple Fields
0: JoinConstraint<T>
LeftOuter(JoinConstraint<T>)
Tuple Fields
0: JoinConstraint<T>
RightOuter(JoinConstraint<T>)
Tuple Fields
0: JoinConstraint<T>
FullOuter(JoinConstraint<T>)
Tuple Fields
0: JoinConstraint<T>
CrossJoin
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<T> RefUnwindSafe for JoinOperator<T> where
<T as AstInfo>::Id: RefUnwindSafe,
<T as AstInfo>::ObjectName: RefUnwindSafe,
impl<T> Send for JoinOperator<T> where
<T as AstInfo>::Id: Send,
<T as AstInfo>::ObjectName: Send,
impl<T> Sync for JoinOperator<T> where
<T as AstInfo>::Id: Sync,
<T as AstInfo>::ObjectName: Sync,
impl<T> Unpin for JoinOperator<T> where
<T as AstInfo>::ObjectName: Unpin,
impl<T> UnwindSafe for JoinOperator<T> where
<T as AstInfo>::Id: UnwindSafe,
<T as AstInfo>::ObjectName: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more