pub fn write_stderr(message: &str) -> Result<()>Expand description
Write output to stderr
Useful for progress messages and diagnostics that shouldn’t be mixed with stdout.
§Examples
use oxur_cli::common::io::write_stderr;
write_stderr("Processing file...")?;