pub trait FutureSend<T>: Future<Output = T> + Send { }Expand description
A trait for Send-able futures with a generic output.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".