debug_et_diagnostics/
lib.rs

1#![allow(unused)]
2#![feature(intra_doc_pointers)]
3#![doc(issue_tracker_base_url = "https://github.com/gabrielfalcao/debug-et-diagnostics/issues/")]
4//! set of macros and tools to colorfully debug and diagnose non-trivial code
5
6pub mod color;
7
8#[doc(inline)]
9pub use color::{
10    ansi, ansi_clear, auto, auto_bright, auto_dark, back, bg, bgfg, bright, bright_rgb_band, byte,
11    byte_bin, byte_hex, couple, cube_ansi_256, dark, dark_rgb_band, fg, fore, format_slice_debug,
12    format_slice_display, format_slice_hex, from_byte, from_bytes, from_debug, from_display,
13    get_ansi_rgb, invert_ansi, invert_bw, invert_rgb, is_bright_rgb_band, is_dark_rgb_band,
14    merge_rgb, non_zero_be_bytes, pad, pad_columns, reset, rgb_from_byte, rgb_from_bytes,
15    rgb_from_display, rgb_to_byte, term_cols, wrap, STD_COLORS,
16};
17
18mod macros;