#native-bindings #unix #structures #ifreq

ifstructs

一个具有Unix if* 结构原生绑定的Rust库

2个版本

使用旧版Rust 2015

0.1.1 2018年8月8日
0.1.0 2018年8月8日

671Unix API

Download history 166/week @ 2024-04-16 217/week @ 2024-04-23 395/week @ 2024-04-30 194/week @ 2024-05-07 269/week @ 2024-05-14 212/week @ 2024-05-21 185/week @ 2024-05-28 347/week @ 2024-06-04 253/week @ 2024-06-11 298/week @ 2024-06-18 255/week @ 2024-06-25 235/week @ 2024-07-02 210/week @ 2024-07-09 406/week @ 2024-07-16 323/week @ 2024-07-23 511/week @ 2024-07-30

1,502 每月下载量
9 个crate中(通过 veilid-tools)使用

MIT 许可证

40KB
1K SLoC

Rust 791 SLoC // 0.0% comments Shell 240 SLoC // 0.3% comments

ifstructs

一个具有Unix if* 结构原生绑定的Rust库

Build Status Latest version Documentation License

使用方法

首先,将以下内容添加到您的 Cargo.toml

[dependencies]
ifstructs = "0.1.1"

然后,将此内容添加到您的crate中

extern crate ifstructs;

use ifstructs::ifreq;

fn main() {
  let mut req = ifreq::from_name("eth0").unwrap();
  
  ...
}

依赖项

~51KB