pub struct NestedLoopJoinOperator { /* private fields */ }Expand description
Nested loop join operator.
Performs a cartesian product of both sides, filtering by the join condition. Less efficient than hash join but supports any join condition.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NestedLoopJoinOperator
impl !RefUnwindSafe for NestedLoopJoinOperator
impl Send for NestedLoopJoinOperator
impl Sync for NestedLoopJoinOperator
impl Unpin for NestedLoopJoinOperator
impl !UnwindSafe for NestedLoopJoinOperator
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