pub trait QueryResult: Default + Display + PartialEq {
    // Required method
    fn report(&mut self, index: usize);
}
Expand description

Result that can be reported during query execution.

Required Methods§

source

fn report(&mut self, index: usize)

Report a match of the query.

Implementors§