12 个版本
0.2.1 | 2024年2月19日 |
---|---|
0.2.0 | 2023年10月24日 |
0.1.5 | 2022年6月27日 |
0.1.0 | 2022年5月24日 |
0.0.1 | 2021年10月2日 |
#173 in Operating systems
59 每月下载量
用于 6 个 crates (3 直接)
16KB
362 行代码
errno-no-std
跨平台接口到 errno
变量。
errno
crate 的改进版本。
示例
use errno::{Errno, errno, set_errno};
// Get the current value of errno
let e = errno();
// Set the current value of errno
set_errno(e);
// Extract the error code as an i32
let code = e.0;
// Display a human-friendly error message
println!("Error {}: {}", code, e);
lib.rs
:
Crate 功能
"std"
默认启用。禁用以使库#![no_std]
.
依赖项
~0–315KB