Skip to main content

Runtime

Trait Runtime 

Source
pub trait Runtime {
    // Required method
    fn spawn<F>(future: F)
       where F: Future + Send + 'static,
             F::Output: Send + 'static;
}

Required Methods§

Source

fn spawn<F>(future: F)
where F: Future + Send + 'static, F::Output: Send + 'static,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§