首先需要引入nix库
官方crate地址为:
https://crates.io/crates/nix
在里面可以查看文档和版本信息。
nix里面有个 nix::sys::ioctl 模块,类似于C标准库的 ioctl.h,用来进行ioctl操作。
使用方法:
修改 Cargo.toml
[dependencies]
nix = "0.27"
代码对应
标签:语言,ioctl,crates,nix,使用,Rust From: https://www.cnblogs.com/riveruns/p/17794343.html