pub struct SetOperationNode {
pub op: SetOperationType,
pub left: Box<PlanNode>,
pub right: Box<PlanNode>,
}Expand description
Set operation node (UNION, INTERSECT, EXCEPT).
Fields§
§op: SetOperationType§left: Box<PlanNode>§right: Box<PlanNode>Trait Implementations§
Source§impl Clone for SetOperationNode
impl Clone for SetOperationNode
Source§fn clone(&self) -> SetOperationNode
fn clone(&self) -> SetOperationNode
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 SetOperationNode
impl RefUnwindSafe for SetOperationNode
impl Send for SetOperationNode
impl Sync for SetOperationNode
impl Unpin for SetOperationNode
impl UnsafeUnpin for SetOperationNode
impl UnwindSafe for SetOperationNode
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