1.36.0[][src]Module maybe_std::future

Asynchronous values.

Structs

Pending

Creates a future which never resolves, representing a computation that never finishes.

Ready

Creates a future that is immediately ready with a value.

PollFnExperimental

A Future that wraps a function returning Poll.

Traits

Future

A future represents an asynchronous computation.

IntoFutureExperimental

Conversion into a Future.

Functions

pending

Creates a future which never resolves, representing a computation that never finishes.

ready

Creates a future that is immediately ready with a value.

poll_fnExperimental

Creates a future that wraps a function returning Poll.