使用旧的Rust 2015
0.2.1
| 2020年2月10日 |
0.1.2
| 2018年11月21日 |
0.1.1
| 2018年11月21日 |
0.1.0
| 2018年11月21日 |
#492 in 调试
20,900 每月下载量
debug_panic
这允许程序立即终止并向程序调用者提供反馈。与panic!不同,默认情况下,debug_panic!语句仅在非优化构建中启用。
示例用法
// panic
debug_panic!();
// panic with a custom message
debug_panic!("panic");