pub struct LeftOuterJoinNode {
pub left: Box<PhysicalPlan>,
pub right: Box<PhysicalPlan>,
pub right_aliases: Vec<String>,
}Fields§
§left: Box<PhysicalPlan>§right: Box<PhysicalPlan>§right_aliases: Vec<String>Trait Implementations§
Source§impl Clone for LeftOuterJoinNode
impl Clone for LeftOuterJoinNode
Source§fn clone(&self) -> LeftOuterJoinNode
fn clone(&self) -> LeftOuterJoinNode
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 LeftOuterJoinNode
impl Debug for LeftOuterJoinNode
Source§impl ExecutionPlan for LeftOuterJoinNode
impl ExecutionPlan for LeftOuterJoinNode
Auto Trait Implementations§
impl Freeze for LeftOuterJoinNode
impl RefUnwindSafe for LeftOuterJoinNode
impl Send for LeftOuterJoinNode
impl Sync for LeftOuterJoinNode
impl Unpin for LeftOuterJoinNode
impl UnsafeUnpin for LeftOuterJoinNode
impl UnwindSafe for LeftOuterJoinNode
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