Skip to main content

RuntimeFuture

Trait RuntimeFuture 

Source
pub trait RuntimeFuture:
    Future
    + Send
    + 'static { }

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<F> RuntimeFuture for F
where F: Future + Send + 'static,

Available on crate feature native-runtime only.