pub trait AsyncFriendly:
Send
+ Sync
+ 'static { }Expand description
The bounds Send + Sync + 'static are often required by type parameters to make Futures
Send + Sync + 'static.
This trait bundles these into a single super-trait for convenience.