pub trait FutureSend<T>: Future<Output = T> + Send { }Expand description
A trait for Send-able futures with a generic output.
Implementors§
impl<T, O> FutureSend<O> for T
Blanket implementation of FutureSend for any type that satisfies the bounds.