pub struct LeftJoinOp {
pub left: Box<LogicalOperator>,
pub right: Box<LogicalOperator>,
pub condition: Option<LogicalExpression>,
}Expand description
Left outer join for OPTIONAL patterns.
Fields§
§left: Box<LogicalOperator>Left (required) input.
right: Box<LogicalOperator>Right (optional) input.
condition: Option<LogicalExpression>Optional filter condition.
Trait Implementations§
Source§impl Clone for LeftJoinOp
impl Clone for LeftJoinOp
Source§fn clone(&self) -> LeftJoinOp
fn clone(&self) -> LeftJoinOp
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 moreAuto Trait Implementations§
impl Freeze for LeftJoinOp
impl RefUnwindSafe for LeftJoinOp
impl Send for LeftJoinOp
impl Sync for LeftJoinOp
impl Unpin for LeftJoinOp
impl UnwindSafe for LeftJoinOp
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