mprobe_vis/lib.rs
1//! [mprobe]'s visualization library.
2//!
3//! [mprobe]: https://github.com/nelusnegur/mprobe
4//!
5//! **WARNING**: This library is the mprobe's visualization internal library and
6//! there are no plans to stabilize it. The API may break at any time without notice.
7
8#![warn(missing_docs)]
9
10pub(crate) mod chart;
11pub(crate) mod id;
12pub(crate) mod template;
13
14pub mod error;
15pub mod layout;