3 个版本
0.1.2 | 2022 年 10 月 8 日 |
---|---|
0.1.1 | 2022 年 10 月 7 日 |
0.1.0 | 2022 年 10 月 7 日 |
#1175 在 文件系统 中
14KB
281 行
UNIXPermissionsExt
一个简单的特质,将 UNIX 平台上 std::os::unix::fs::PermissionsExt
没有暴露的缺失功能引入到 std::fs::Permissions
中。
pub trait UNIXPermissionsExt {
fn set_uid(&self) -> bool;
fn set_gid(&self) -> bool;
fn sticky_bit(&self) -> bool;
fn readable_by_owner(&self) -> bool;
fn writable_by_owner(&self) -> bool;
fn executable_by_owner(&self) -> bool;
fn readable_by_group(&self) -> bool;
fn writable_by_group(&self) -> bool;
fn executable_by_group(&self) -> bool;
fn readable_by_other(&self) -> bool;
fn writable_by_other(&self) -> bool;
fn executable_by_other(&self) -> bool;
fn stringify(&self) -> String;
}
impl UNIXPermissionsExt for Permissions {
...
}
用法
-
将其添加到依赖项中
$ cd $YOUR_PROJECT $ cargo add unix_permissions_ext
-
导入此特质,就像使用标准库一样使用它!
use std::fs::metadata; use unix_permissions_ext::UNIXPermissionsExt; let metadata = metadata("/usr/bin/passwd").expect("can not fetch metadata"); let permission = metadata.permissions(); assert!(permission.set_uid()); println!("Permission: {}", permission.stringify());
-
要直接使用与
mode_t
类型一起使用的这些函数,请考虑导入raw_fn
模块use unix_permissions_ext::raw_fn::*;
贡献
欢迎所有形式的贡献,请随意提交问题或创建拉取请求!
在提交之前进行测试
-
通过测试
$ cargo test
-
格式化代码
$ cargo fmt