#async-stream #async #transform

transform-stream

Lightweight async stream wrapper

6 releases

0.3.1 Jan 18, 2025
0.3.0 Feb 1, 2023
0.2.0 Oct 13, 2021
0.1.2 Oct 22, 2020

#377 in Asynchronous

Download history 1266/week @ 2024-11-15 1087/week @ 2024-11-22 1343/week @ 2024-11-29 583/week @ 2024-12-06 790/week @ 2024-12-13 294/week @ 2024-12-20 611/week @ 2024-12-27 1318/week @ 2025-01-03 1267/week @ 2025-01-10 1463/week @ 2025-01-17 1371/week @ 2025-01-24 1422/week @ 2025-01-31 1115/week @ 2025-02-07 1241/week @ 2025-02-14 2013/week @ 2025-02-21 994/week @ 2025-02-28

5,655 downloads per month
Used in 6 crates (4 directly)

MIT license

11KB
280 lines

transform-stream

Latest Version Documentation License

Lightweight async stream wrapper

Documentation: https://docs.rs/transform-stream

Inspired by https://github.com/tokio-rs/async-stream

Contributing


lib.rs:

Lightweight async stream wrapper.

Inspired by https://github.com/tokio-rs/async-stream

Usage

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());
});

Dependencies

~25KB