use ;
use Stream;
/* TODO: Use this
pub trait Timer {
type Error;
fn timeout(
self: Pin<Self>,
duration: Time,
) -> impl StableFuture<Item = (), Error = Self::Error> + '_;
fn interval(
self: Pin<Self>,
duration: Time,
) -> impl StableStream<Item = (), Error = Self::Error> + '_;
}
*/