1 个稳定版本
1.0.0 | 2020年8月11日 |
---|
#670 在 调试 分类中
1,574 每月下载量
在 25 个crate中使用了(直接使用16个)
6KB
debug_print
示例
use debug_print::{debug_print, debug_println, debug_eprint, debug_eprintln};
let x = 5 * 2;
debug_println!("x = {}", x);
debug_print!("x");
debug_print!(" = ");
debug_print!("{}", x);
debug_eprintln!("I'm printing to the Standard Error");
debug_eprint!("I'm printing to the Standard Error");
如果你不喜欢宏的名称。
use debug_print::{
debug_print as dprint,
debug_println as dprintln,
debug_eprint as deprint,
debug_eprintln as deprintln,
};
let x = 5 * 2;
dprintln!("x = {}", x);
dprint!("x");
dprint!(" = ");
dprint!("{}", x);
deprintln!("I'm printing to the Standard Error");
deprint!("I'm printing to the Standard Error");
许可协议
许可协议为Apache许可证版本2.0或MIT许可证,您可任选其一。除非您明确声明,否则您有意提交的任何贡献,根据Apache-2.0许可证的定义,应按上述方式双重许可,不得附加任何额外的条款或条件。