#named-pipe #unix #fifo #mkfifo

unix-named-pipe

简化Unix平台上命名管道的创建

2 个不稳定版本

0.2.0 2018年10月6日
0.1.0 2018年10月3日

#562 in Unix API

Download history • Rust 包仓库 2002/week @ 2024-03-14 • Rust 包仓库 2031/week @ 2024-03-21 • Rust 包仓库 1861/week @ 2024-03-28 • Rust 包仓库 2703/week @ 2024-04-04 • Rust 包仓库 2575/week @ 2024-04-11 • Rust 包仓库 2566/week @ 2024-04-18 • Rust 包仓库 1391/week @ 2024-04-25 • Rust 包仓库 1062/week @ 2024-05-02 • Rust 包仓库 1376/week @ 2024-05-09 • Rust 包仓库 1420/week @ 2024-05-16 • Rust 包仓库 1355/week @ 2024-05-23 • Rust 包仓库 1239/week @ 2024-05-30 • Rust 包仓库 1361/week @ 2024-06-06 • Rust 包仓库 1686/week @ 2024-06-13 • Rust 包仓库 1724/week @ 2024-06-20 • Rust 包仓库 1513/week @ 2024-06-27 • Rust 包仓库

每月6,537次下载
12crate(9个直接)中使用

MIT 许可证

12KB
157

unix-named-pipe

pipeline status coverage report


unix-named-pipe 是一个库,用于简化在Unix平台上创建和使用命名管道

用法

extern crate unix_named_pipe;

...

let filename = "/var/run/application.pipe";
let mode: u32 = 0o644

// Create a new named pipe
unix_named_pipe::create(filename, mode)?;

// Open a named pipe for reading
let read_file = unix_named_pipe::open_read(filename)?;

// Open a named pipe for writing (appending)
let write_file = unix_named_pipe::open_write(filename)?;

贡献

欢迎并鼓励提交拉取请求。请通过问题跟踪器或电子邮件提问。

任何贡献都将非常感激 <3。

许可证

根据MIT许可。有关详细信息,请参阅LICENSE

依赖关系

~230KB