Expand description
TaskHandle for awaiting spawned task results.
TaskHandle<T> is returned by spawn operations and allows the spawner
to await the task’s result. Similar to join handles in other runtimes.
Structs§
- Join
Future - Future returned by
TaskHandle::join. - Task
Handle - A handle to a spawned task that can be used to await its result.
Enums§
- Join
Error - Error returned when joining a spawned task fails.