2021-03-02 15:45:22 +01:00
|
|
|
use core::future::Future;
|
|
|
|
|
|
|
|
pub trait Delay {
|
|
|
|
type DelayFuture<'a>: Future<Output = ()> + 'a;
|
|
|
|
|
2021-03-22 02:30:03 +01:00
|
|
|
/// Future that completes after now + millis
|
2021-10-18 00:55:43 +02:00
|
|
|
fn delay_ms(&mut self, millis: u64) -> Self::DelayFuture<'_>;
|
2021-03-22 02:30:03 +01:00
|
|
|
|
|
|
|
/// Future that completes after now + micros
|
2021-10-18 00:55:43 +02:00
|
|
|
fn delay_us(&mut self, micros: u64) -> Self::DelayFuture<'_>;
|
2021-03-02 15:45:22 +01:00
|
|
|
}
|