console_api/
lib.rs

1#![doc = include_str!("../README.md")]
2
3/// Represents the operations performed by an async runtime.
4pub mod async_ops;
5/// Represents unique id's and Rust source locations.
6mod common;
7/// Represents interactions between the console-subscriber and a console client observing it.
8pub mod instrument;
9/// Represents updates to the resources in an async runtime.
10pub mod resources;
11/// Represents updates to the tasks in an async runtime.
12pub mod tasks;
13/// Represents events on the tracing subsystem: thread registration and span activities.
14pub mod trace;
15pub use common::*;