pub trait Operator: Send + Sync {
// Required methods
fn next(&mut self) -> OperatorResult;
fn reset(&mut self);
fn name(&self) -> &'static str;
}Expand description
Trait for physical operators.
Required Methods§
Sourcefn next(&mut self) -> OperatorResult
fn next(&mut self) -> OperatorResult
Returns the next chunk of data, or None if exhausted.