Macro show_warning
Source macro_rules! show_warning {
($($args:tt)+) => { ... };
}
Expand description
Print a warning message to stderr.
Takes format!-compatible input and prepends it with the current
utility’s name and “warning: “ before printing to stderr.
§Examples
show_warning!("Couldn't apply {} to {}", "foo", "bar");