pub struct AntiJoinOp {
pub left: Box<LogicalOperator>,
pub right: Box<LogicalOperator>,
}Expand description
Anti-join for MINUS patterns.
Fields§
§left: Box<LogicalOperator>Left input (results to keep if no match on right).
right: Box<LogicalOperator>Right input (patterns to exclude).
Trait Implementations§
Source§impl Clone for AntiJoinOp
impl Clone for AntiJoinOp
Source§fn clone(&self) -> AntiJoinOp
fn clone(&self) -> AntiJoinOp
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 AntiJoinOp
impl RefUnwindSafe for AntiJoinOp
impl Send for AntiJoinOp
impl Sync for AntiJoinOp
impl Unpin for AntiJoinOp
impl UnwindSafe for AntiJoinOp
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