inspect_format/lib.rs
1//! Tree-based formatting and semantic styling for inspected values.
2//!
3//! This crate provides renderers that convert inspected values into
4//! human-readable tree representations with semantic syntax highlighting.
5
6pub mod color_choice;
7pub mod role;
8pub mod style;
9pub mod theme;
10pub mod tree;
11
12pub use color_choice::{ColorChoice, ColorLevel};
13pub use role::StyleRole;
14#[cfg(feature = "color")]
15pub use style::{Ansi256Color, Color, Effects, Reset, RgbColor};
16pub use style::{AnsiColor, Style};
17pub use theme::Theme;
18pub use tree::{TreeConfig, TreeFormatter};