Expand description
A one-shot, futures-aware channel
This channel is similar to that in sync::oneshot
but cannot be sent across
threads.
Structs§
- Canceled
- Error returned from a
Receiver<T>
whenever the correspondingSender<T>
is dropped. - Execute
- Type of future which
Spawn
instances below must be able to spawn. - Receiver
- A future representing the completion of a computation happening elsewhere in memory.
- Sender
- Represents the completion half of a oneshot through which the result of a computation is signaled.
- Spawn
Handle - Handle returned from the
spawn
function.