devela/work/async/coroutine/
reexports.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// devela::work::async::coroutine::reexports
//
//! Reexported items.
//

use crate::reexport;

reexport! { rust: core::ops,
    extra_features: "nightly_coro",
    doc: "The trait implemented by builtin coroutine types.",
    Coroutine
}
reexport! { rust: core::ops,
    extra_features: "nightly_coro",
    doc: "The result of a coroutine resumption.",
    CoroutineState
}