Skip to main content

RuntimeFuture

Trait RuntimeFuture 

pub trait RuntimeFuture: Future<Output = Result<(), NetworkError>> + ContextRequirements { }

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

§

impl<T> RuntimeFuture for T
where T: Future<Output = Result<(), NetworkError>> + ContextRequirements,