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, back, bg, bgfg, bright, bright_rgb_band, byte, byte_bin, byte_hex,
11    couple, cube_ansi_256, dark, dark_rgb_band, fg, fore, format_slice_debug, format_slice_display,
12    format_slice_hex, from_byte, from_bytes, from_debug, from_display, get_ansi_rgb, invert_ansi,
13    invert_bw, invert_rgb, is_bright_rgb_band, is_dark_rgb_band, merge_rgb, non_zero_be_bytes, pad,
14    pad_columns, reset, rgb_from_byte, rgb_from_bytes, rgb_from_display, rgb_to_byte, term_cols,
15    wrap, STD_COLORS,
16};
17
18mod macros;