pub trait SendFuture<T>: Future<Output = T> + Send { }Expand description
A simplified type alias for Future<Output = T> + Send.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".