Crate futures_core
Core traits and types for asynchronous operations in Rust.
Modules
Traits
- FusedFuture A future which tracks whether or not the underlying future should no longer be polled.
- FusedStream A stream which tracks whether or not the underlying stream should no longer be polled.
- Future
- Stream A stream of values produced asynchronously.
-
TryFuture
A convenience for futures that return
Resultvalues that includes a variety of adapters tailored to such futures. -
TryStream
A convenience for streams that return
Resultvalues that includes a variety of adapters tailored to such futures.
Macros
-
ready
Extracts the successful type of a
Poll<T>.