pub struct EmptyOperator { /* private fields */ }Expand description
An empty operator that produces no rows.
Useful as a placeholder or for empty result sets.
Implementations§
Source§impl EmptyOperator
impl EmptyOperator
Trait Implementations§
Source§impl Default for EmptyOperator
impl Default for EmptyOperator
Source§impl Operator for EmptyOperator
impl Operator for EmptyOperator
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 Freeze for EmptyOperator
impl RefUnwindSafe for EmptyOperator
impl Send for EmptyOperator
impl Sync for EmptyOperator
impl Unpin for EmptyOperator
impl UnsafeUnpin for EmptyOperator
impl UnwindSafe for EmptyOperator
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