Lines Matching +full:cross +full:- +full:spawn
4 // Also, there is cross crate links in here. They are not going to work anytime soon. Do we put htt…
5 // in here? to here: https://rust-lang.github.io/futures-api-docs? The problem is these have a
6 // version hardcoded in the url: 0.3.0-alpha.16 We could link to docs.rs, but currently that says:
7 // docs.rs failed to build futures-0.3.0-alpha.16 -> ok the reason seems to be that they are on
8 // 2019-04-17 which does still have futures-api unstable feature, so that should get solved.
15 //! [`Spawn`](futures_task::Spawn) implementations.
18 //! - [`noop_context`] creates a context that ignores calls to
20 //! - [`panic_context`] creates a context that panics when
24 //! - [`noop_waker`] creates a waker that ignores calls to
26 //! - [`panic_waker`](panic_waker()) creates a waker that panics when
28 //! - [`new_count_waker`] creates a waker that increments a counter whenever
32 //! - [`NoopSpawner`] ignores calls to
33 //! [`spawn`](futures_util::task::SpawnExt::spawn)
34 //! - [`PanicSpawner`] panics if [`spawn`](futures_util::task::SpawnExt::spawn) is
36 //! - [`RecordSpawner`] records the spawned futures.