Expand description

A one-shot, futures-aware channel

This channel is similar to that in sync::oneshot but cannot be sent across threads.

Re-exports

pub use sync::oneshot::Canceled;

Structs

Type of future which Spawn instances below must be able to spawn.

A future representing the completion of a computation happening elsewhere in memory.

Represents the completion half of a oneshot through which the result of a computation is signaled.

Handle returned from the spawn function.

Functions

Creates a new futures-aware, one-shot channel.

Spawns a future onto the instance of Executor provided, executor, returning a handle representing the completion of the future.

Spawns a function f onto the Spawn instance provided s.