1个稳定版本
使用旧的Rust 2015
1.0.0 | 2017年1月14日 |
---|
在#posix中排名107
每月下载量1,093
在 2 crates中使用
9KB
76 行
linux-personality
本crate旨在为Linux的personality
函数提供一个安全的包装。
用法
首先将其添加到您的Cargo.toml
[dependencies]
linux-personality = "1.0"
并将其添加到crate根目录
extern crate linux_personality;
示例
extern crate linux_personality;
use linux_personality::get_personality();
fn main() {
let persona = get_personality().unwrap();
println!("Current personality: {:?}", persona);
}
作者
Jean Pierre Dudey - 初始工作 - [email protected]
许可证
本项目采用MIT许可证。更多信息请参阅本存储库中的LICENSE文件。
lib.rs
:
linux-personality
本crate是对Linux personality
函数的一个类型安全的包装。
示例
设置个性。
extern crate linux_personality;
use linux_personality::personality;
use linux_personality::PER_LINUX;
let previous_personality = personality(PER_LINUX).unwrap();
获取个性。
extern crate linux_personality;
use linux_personality::get_personality;
let persona = get_personality().unwrap();
依赖项
~185KB