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

Result that can be reported during query execution.

Required Methods

Report a match of the query.

Implementors