pub trait Intervalable {
    fn interval(dur: Duration) -> Self;
fn wait<'a>(
        &'a mut self
    ) -> Pin<Box<dyn Future<Output = Option<Instant>> + Send + 'a>>; }

Required methods

Implementations on Foreign Types

Implementors