4 releases

0.2.0 Mar 8, 2021
0.1.2 May 4, 2020
0.1.1 Aug 18, 2018
0.1.0 Aug 18, 2018

#531 in Asynchronous

Download history 356/week @ 2023-12-13 248/week @ 2023-12-20 142/week @ 2023-12-27 232/week @ 2024-01-03 246/week @ 2024-01-10 265/week @ 2024-01-17 374/week @ 2024-01-24 388/week @ 2024-01-31 439/week @ 2024-02-07 386/week @ 2024-02-14 496/week @ 2024-02-21 375/week @ 2024-02-28 370/week @ 2024-03-06 410/week @ 2024-03-13 389/week @ 2024-03-20 439/week @ 2024-03-27

1,664 downloads per month
Used in 11 crates (10 directly)

MIT/Apache

14KB
268 lines

readwrite

Given two things, one of which implements std::io::Read and other implements std::io::Write, make a single socket-like object which implements Read + Write. Note that you can't write to it while waiting for data to come from read part.

Example: generate a virtual socketpair.

fn main() {
    extern crate pipe;
    extern crate readwrite;

    let (r1,w1) = pipe::pipe();
    let (r2,w2) = pipe::pipe();
    let (s1,s2) = (ReadWrite::new(r1,w2), ReadWrite::new(r2,w1));
}

There is also async implementation for combining tokio::io::AsyncRead and tokio::io::AsyncWrite into a AsyncRead + AsyncWrite. Enable the non-default tokio Cargo feature for it to work: Similarly there is futures::io::AsyncRead/AsyncWrite version gated under asyncstd Cargo feature.

[dependencies]
readwrite = {version="0.1.1", features=["tokio"]}

See also

  • duplexify - alternative implementation for async-std
  • Use version 0.1 of this crate for old tokio-core support. tokio 0.1 is not supported.

Dependencies

~0–1.3MB
~21K SLoC