macro_rules! println_warning {
($($arg:tt)*) => { ... };
}Expand description
Prints a warning message with yellow background and white text.
Supports format string syntax like format! macro:
println_warning!("Warning")- Simple stringprintln_warning!("Warning: {}", error)- Positional argumentsprintln_warning!("Warning: {error}")- Named arguments (Rust 1.58+)