inspect-format 0.1.0

Formatting and rendering for inspect-rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Tree-based formatting and semantic styling for inspected values.
//!
//! This crate provides renderers that convert inspected values into
//! human-readable tree representations with semantic syntax highlighting.

pub mod color_choice;
pub mod role;
pub mod style;
pub mod theme;
pub mod tree;

pub use color_choice::{ColorChoice, ColorLevel};
pub use role::StyleRole;
#[cfg(feature = "color")]
pub use style::{Ansi256Color, Color, Effects, Reset, RgbColor};
pub use style::{AnsiColor, Style};
pub use theme::Theme;
pub use tree::{TreeConfig, TreeFormatter};