pub struct CompiledUnionBranch {
pub all: bool,
pub physical: PhysicalPlan,
}Fields§
§all: boolIf true, UNION ALL (keep duplicates). If false, plain UNION (deduplicate).
physical: PhysicalPlanTrait Implementations§
Source§impl Clone for CompiledUnionBranch
impl Clone for CompiledUnionBranch
Source§fn clone(&self) -> CompiledUnionBranch
fn clone(&self) -> CompiledUnionBranch
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 CompiledUnionBranch
impl RefUnwindSafe for CompiledUnionBranch
impl Send for CompiledUnionBranch
impl Sync for CompiledUnionBranch
impl Unpin for CompiledUnionBranch
impl UnsafeUnpin for CompiledUnionBranch
impl UnwindSafe for CompiledUnionBranch
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