std::future - Rust (original) (raw)
Module future
1.36.0 · Source
Expand description
Asynchronous basic functionality.
Please see the fundamental async and await keywords and the async bookfor more information on asynchronous programming in Rust.
joinExperimental
Polls multiple futures simultaneously, returning a tuple of all results once complete.
Creates a future which never resolves, representing a computation that never finishes.
A Future that wraps a function returning Poll.
A future that is immediately ready with a value.
AsyncDropInPlaceExperimental
A future returned by the async_drop_in_place.
A future represents an asynchronous computation obtained by use of async.
Conversion into a Future
.
AsyncDropExperimental
Custom code within the asynchronous destructor.
Creates a future which never resolves, representing a computation that never finishes.
Creates a future that wraps a function returning Poll.
Creates a future that is immediately ready with a value.
async_dropExperimental
Asynchronously drops a value by running AsyncDrop::async_drop
on a value and its fields recursively.
async_drop_in_place⚠Experimental
Creates the asynchronous destructor of the pointed-to value.