product_os_async_executor::sleep

Trait Sleep

Source
pub trait Sleep<D, T>: Future {
    // Required methods
    fn sleep(period: D) -> Self;
    fn sleep_until(time: T) -> Self;
}

Required Methods§

Source

fn sleep(period: D) -> Self

Source

fn sleep_until(time: T) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§