pub struct UnionOperator {
pub operands: Vec<Arc<dyn Operator>>,
}Fields§
§operands: Vec<Arc<dyn Operator>>Implementations§
Trait Implementations§
Source§impl Operator for UnionOperator
impl Operator for UnionOperator
fn execute(&self, ctx: &ExecutionContext) -> OperatorResult
fn cost_estimate(&self, stats: &IndexStats) -> f64
Auto Trait Implementations§
impl !RefUnwindSafe for UnionOperator
impl !UnwindSafe for UnionOperator
impl Freeze for UnionOperator
impl Send for UnionOperator
impl Sync for UnionOperator
impl Unpin for UnionOperator
impl UnsafeUnpin for UnionOperator
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