3个稳定版本
1.0.2 | 2021年4月28日 |
---|---|
1.0.0 | 2021年4月22日 |
#543 in 操作系统
14KB
216 行
chatora-errno
一个基于libc errno
接口的轻量级Rust封装库。
示例
use chatora_errno::{clear_errno, describe_errno, get_errno, set_errno};
// Clear current errno.
clear_errno();
// Get the current value of errno.
let errno: i32 = get_errno();
assert_eq!(errno, 0);
// Equivalent to `clear_errno()`.
set_errno(0);
// Get string description of an errno.
let err_string: String = describe_errno(errno).unwrap();
assert_eq!(
format!("{} (os error {})", err_string, errno),
format!("{}", std::io::Error::from_raw_os_error(errno))
);
assert_eq!(err_string, "Success");
使用方法
要使用 chatora-errno
,请将以下内容添加到您的 Cargo.toml
[dependencies]
chatora-errno = "1.0.2"
许可证
许可协议为以下之一
- Apache License, Version 2.0 (LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
任选其一。
贡献
除非您明确声明,否则您提交的任何旨在包含在本作品中的贡献,如Apache-2.0许可证所定义,均应按上述方式双许可,不附加任何额外条款或条件。