1// devela::work::future::reexports
2//
3//! Reexported items.
4//
5// WAIT: [future_join](https://github.com/rust-lang/rust/issues/91642)
6// WAIT: [async_drop](https://github.com/rust-lang/rust/issues/126482)
78use crate::reexport;
910/* from either `alloc` or `portable-atomic-util` and `alloc` */
1112#[doc = crate::TAG_ATOMIC!()]
13#[doc = crate::TAG_ATOMIC_ALLOC_PORTABLE_UTIL!()]
14#[cfg(all(feature = "alloc", feature = "dep_portable_atomic_util"))]
15#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
16pub use crate::_dep::portable_atomic_util::task::Wake as TaskWake;
17//
18#[doc = crate::TAG_ATOMIC!()]
19#[doc = crate::TAG_ATOMIC_ALLOC_PORTABLE_UTIL!()]
20#[cfg(all(feature = "alloc", not(feature = "dep_portable_atomic_util")))]
21#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
22pub use crate::_dep::_alloc::task::Wake as TaskWake;
2324/* `core` future */
2526reexport! { rust: core::future,
27 doc: "A future which never resolves, representing a computation that never finishes.",
28 @Pending as FuturePending
29}
30reexport! { rust: core::future,
31 doc: "A Future that wraps a function returning [`TaskPoll`].",
32 @PollFn as FuturePollFn
33}
34reexport! { rust: core::future,
35 doc: "A future that is immediately ready with a value.",
36 @Ready as FutureReady
37}
38reexport! { rust: core::future,
39 doc: "An asynchronous computation obtained by use of
40 [`async`](https://doc.rust-lang.org/std/keyword.async.html).",
41 Future
42}
43reexport! { rust: core::future,
44 doc: "Conversion into a `Future`.",
45 IntoFuture
46}
4748/* `core` task */
4950reexport! { rust: core::task,
51 doc: "The context of an asynchronous task.",
52 @Context as TaskContext
53}
54reexport! { rust: core::task,
55 doc: "Allows the implementor of a task executor to create a [`TaskWaker`].",
56 @RawWaker as TaskRawWaker
57}
58reexport! { rust: core::task,
59 doc: "A virtual function pointer table that specifies the behavior of a [`TaskRawWaker`].",
60 @RawWakerVTable as TaskRawWakerVTable
61}
62reexport! { rust: core::task,
63 doc: "A handle for waking up a task by notifying its executor that it is ready to be run.",
64 @Waker as TaskWaker
65}
66reexport! { rust: core::task,
67 doc: "Indicates whether a value is ready or if the current task is still pending.",
68 @Poll as TaskPoll
69}
70reexport! { rust: core::task,
71 doc: "Extracts the successful type of a [`TaskPoll<T>`].",
72 @ready as task_ready
73}