pub trait Operator: Send + Sync {
// Required methods
fn execute(&mut self, input: Option<RowBatch>) -> Result<Option<RowBatch>>;
fn name(&self) -> &str;
// Provided method
fn is_pipeline_breaker(&self) -> bool { ... }
}Expand description
Base trait for all query operators
Required Methods§
Provided Methods§
Sourcefn is_pipeline_breaker(&self) -> bool
fn is_pipeline_breaker(&self) -> bool
Check if operator is pipeline breaker