7个版本 (4个破坏性版本)
使用旧的Rust 2015
0.4.0 | 2020年11月28日 |
---|---|
0.3.0 | 2020年5月7日 |
0.2.0 | 2019年7月18日 |
0.1.0 | 2018年10月5日 |
0.0.1 | 2015年7月21日 |
#267 在 内存管理
11,158 每月下载量
用于 47 个crate (15个直接使用)
16KB
323 行
pipe
同步内存 Read
/Write
管道。
lib.rs
:
同步内存管道
示例
use std::thread::spawn;
use std::io::{Read, Write};
let (mut read, mut write) = pipe::pipe();
let message = "Hello, world!";
spawn(move || write.write_all(message.as_bytes()).unwrap());
let mut s = String::new();
read.read_to_string(&mut s).unwrap();
assert_eq!(&s, message);
依赖项
~350KB