[−][src]Crate futures_executor
Built-in executors and related tools.
Structs
| BlockingStream |
An iterator which blocks on values from a stream until they become available. |
| Enter |
Represents an executor context. |
| EnterError |
An error returned by |
| JoinHandle |
The type of future returned from the |
| LocalExecutor | |
| LocalPool |
A single-threaded task pool. |
| Spawn |
A future representing the completion of task spawning. |
| SpawnWithHandle |
A future representing the completion of task spawning, yielding a
|
| ThreadPool |
A general-purpose thread pool for scheduling asynchronous tasks. |
| ThreadPoolBuilder |
Thread pool configuration object. |
Functions
| block_on |
Run a future to completion on the current thread. |
| block_on_stream |
Turn a stream into a blocking iterator. |
| enter |
Marks the current thread as being within the dynamic extent of an executor. |
| spawn |
Spawn a task onto the default executor. |
| spawn_with_handle |
Spawn a task onto the default executor, yielding a
|