We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee1df72 commit 3a9ec48Copy full SHA for 3a9ec48
console-api/src/lib.rs
@@ -1,7 +1,13 @@
1
+/// Represents the operations performed by an async runtime.
2
pub mod async_ops;
3
+/// Represents unique id's and Rust source locations.
4
mod common;
5
+/// Represents interactions between the console-subscriber and a console client observing it.
6
pub mod instrument;
7
+/// Represents updates to the resources in an async runtime.
8
pub mod resources;
9
+/// Represents updates to the tasks in an async runtime.
10
pub mod tasks;
11
+/// Represents events on the tracing subsystem: thread registration and span activities.
12
pub mod trace;
13
pub use common::*;
0 commit comments