Skip to main content

PhysicalOperator

Trait PhysicalOperator 

Source
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§

Source

fn next(&mut self, ctx: &SparqlQueryContext, row: &mut BindingRow) -> bool

Advance to next result, returns true if more results available

Implementors§