pub trait Query {
    fn execute(&mut self, context: &(dyn Any + 'static)) -> ControlFlow;
}

Required Methods

Implementors