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异步

Download history • Rust 包仓库 1519/week @ 2024-03-15 • Rust 包仓库 1203/week @ 2024-03-22 • Rust 包仓库 1409/week @ 2024-03-29 • Rust 包仓库 1442/week @ 2024-04-05 • Rust 包仓库 1961/week @ 2024-04-12 • Rust 包仓库 1685/week @ 2024-04-19 • Rust 包仓库 1866/week @ 2024-04-26 • Rust 包仓库 1863/week @ 2024-05-03 • Rust 包仓库 1923/week @ 2024-05-10 • Rust 包仓库 1861/week @ 2024-05-17 • Rust 包仓库 1280/week @ 2024-05-24 • Rust 包仓库 2638/week @ 2024-05-31 • Rust 包仓库 2071/week @ 2024-06-07 • Rust 包仓库 1501/week @ 2024-06-14 • Rust 包仓库 1987/week @ 2024-06-21 • Rust 包仓库 1161/week @ 2024-06-28 • Rust 包仓库

7,079 每月下载量
9 个 crates(4 个直接使用) 中使用

MIT 许可证

10KB
260

transform-stream

Crates.io MIT licensed Docs

轻量级异步流包装器。

文档:https://docs.rs/transform-stream/

灵感来源于 https://github.com/tokio-rs/async-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