Expand description
Futures.
Re-exports§
pub use core::future::Future;
Modules§
Traits§
- Fused
Future  - A future which tracks whether or not the underlying future should no longer be polled.
 - TryFuture
 - A convenience for futures that return 
Resultvalues that includes a variety of adapters tailored to such futures. 
Type Aliases§
- BoxFuture
 - An owned dynamically typed 
Futurefor use in cases where you can’t statically type your result or need to add some indirection. - Local
BoxFuture  BoxFuture, but without theSendrequirement.