pub trait PhysicalOperator {
// Required method
fn next(&mut self, ctx: &SparqlQueryContext, row: &mut BindingRow) -> bool;
}Expand description
Physical operator trait for query execution
Required Methods§
Sourcefn next(&mut self, ctx: &SparqlQueryContext, row: &mut BindingRow) -> bool
fn next(&mut self, ctx: &SparqlQueryContext, row: &mut BindingRow) -> bool
Advance to next result, returns true if more results available