eprint

Macro eprint 

Source
macro_rules! eprint {
    ($($arg:tt)*) => { ... };
}
Expand description

Print formatted text with Rich markup to stderr (no newline).

This macro is a drop-in replacement for std::eprint! that adds Rich markup support for colors, styles, and formatting.

ยงExample

use fast_rich::eprint;

eprint!("[red]Error:[/] ");