pub trait Query {
    fn on_timer(&mut self, timer: &Timer) -> Result;
}
Expand description

A query to be executed against a provider

Required Methods

Called for each timer owned by the provider

Implementations on Foreign Types

Implement Query for Option<Timestamp> to make it easy to get the earliest armed timestamp

Implementors