5 个不稳定版本
0.3.0 | 2023 年 2 月 1 日 |
---|---|
0.2.0 | 2021 年 10 月 13 日 |
0.1.2 | 2020 年 10 月 22 日 |
0.1.1 | 2020 年 10 月 4 日 |
0.1.0 | 2020 年 10 月 3 日 |
#1313 在 异步
7,079 每月下载量
在 9 个 crates(4 个直接使用) 中使用
10KB
260 行
transform-stream
轻量级异步流包装器。
lib.rs
:
轻量级异步流包装器。
灵感来源于 https://github.com/tokio-rs/async-stream
用法
use transform_stream::{try_stream, AsyncTryStream};
use futures_util::{pin_mut, StreamExt};
use std::io;
let stream: AsyncTryStream<Vec<u8>, io::Error, _> = try_stream!{
yield_!(vec![b'1', b'2']);
yield_!(vec![b'3', b'4']);
Ok(())
};
futures_executor::block_on(async {
pin_mut!(stream);
assert_eq!(stream.next().await.unwrap().unwrap(), vec![b'1', b'2']);
assert_eq!(stream.next().await.unwrap().unwrap(), vec![b'3', b'4']);
assert!(stream.next().await.is_none());
});
依赖项
~24KB