pub struct CountIntegerAntiJoinOperator { /* private fields */ }Implementations§
Source§impl CountIntegerAntiJoinOperator
impl CountIntegerAntiJoinOperator
pub fn new( outer: Box<dyn Operator>, inner: Box<dyn Table>, outer_key_index: usize, lookup: IntegerAntiJoinLookup, ) -> Self
pub fn with_context(self, context: &ExecutionContext) -> Self
Trait Implementations§
Source§impl Operator for CountIntegerAntiJoinOperator
impl Operator for CountIntegerAntiJoinOperator
Source§fn schema(&self) -> &[ColumnInfo]
fn schema(&self) -> &[ColumnInfo]
Get the schema (column information) for this operator’s output.
Source§fn estimated_rows(&self) -> Option<usize>
fn estimated_rows(&self) -> Option<usize>
Get an estimate of the number of rows this operator will produce. Read more
Source§fn ordering(&self) -> OrderingProperty
fn ordering(&self) -> OrderingProperty
Physical ordering guaranteed by this operator’s output. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for CountIntegerAntiJoinOperator
impl !Sync for CountIntegerAntiJoinOperator
impl !UnwindSafe for CountIntegerAntiJoinOperator
impl Freeze for CountIntegerAntiJoinOperator
impl Send for CountIntegerAntiJoinOperator
impl Unpin for CountIntegerAntiJoinOperator
impl UnsafeUnpin for CountIntegerAntiJoinOperator
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