FutureSend

Trait FutureSend 

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

A trait for Send-able futures with a generic output.

Implementors§

Source§

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

Blanket implementation of FutureSend for any type that satisfies the bounds.