reqwest_cross

Trait BoundedFuture

Source
pub trait BoundedFuture<O>: Future<Output = O> + Send { }
Expand description

A future with the required bounds for the platform

Implementors§

Source§

impl<T, O> BoundedFuture<O> for T
where T: Future<Output = O> + Send,