devela/work/future/coroutine/reexports.rs
1// devela::work::future::coroutine::reexports
2//
3//! Reexported items.
4//
5
6use crate::reexport;
7
8reexport! { rust: core::ops,
9 extra_features: "nightly_coro",
10 doc: "The trait implemented by builtin coroutine types.",
11 Coroutine
12}
13reexport! { rust: core::ops,
14 extra_features: "nightly_coro",
15 doc: "The result of a coroutine resumption.",
16 CoroutineState
17}