pub struct NestedLoopJoinNode {
pub left: Box<PhysicalPlan>,
pub right: Box<PhysicalPlan>,
pub predicate: Option<Expression>,
}Fields§
§left: Box<PhysicalPlan>§right: Box<PhysicalPlan>§predicate: Option<Expression>Trait Implementations§
Source§impl Clone for NestedLoopJoinNode
impl Clone for NestedLoopJoinNode
Source§fn clone(&self) -> NestedLoopJoinNode
fn clone(&self) -> NestedLoopJoinNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NestedLoopJoinNode
impl Debug for NestedLoopJoinNode
Source§impl ExecutionPlan for NestedLoopJoinNode
impl ExecutionPlan for NestedLoopJoinNode
Auto Trait Implementations§
impl Freeze for NestedLoopJoinNode
impl RefUnwindSafe for NestedLoopJoinNode
impl Send for NestedLoopJoinNode
impl Sync for NestedLoopJoinNode
impl Unpin for NestedLoopJoinNode
impl UnsafeUnpin for NestedLoopJoinNode
impl UnwindSafe for NestedLoopJoinNode
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