macro_rules! eprintln { () => { ... }; ($($arg:tt)*) => { ... }; }
Expand description
使用换行符打印到标准错误。
等效于 println!
宏,除了输出转到 io::stderr
而不是 io::stdout
。
有关用法示例,请参见 println!
。
仅将 eprintln!
用于错误和进度消息。
改用 println!
作为程序的主要输出。
Panics
如果写入 io::stderr
失败,就会出现 panics。
写入非阻塞 stdout 可能会导致错误,这将导致此宏 panic。
Examples
eprintln!("Error: Could not complete task");
Run