Skip to main content

SendFuture

Trait SendFuture 

Source
pub trait SendFuture<T>: Future<Output = T> + Send { }
Expand description

A simplified type alias for Future<Output = T> + Send.

Implementors§

Source§

impl<T, U> SendFuture<T> for U
where U: Future<Output = T> + Send,