3 releases (breaking)
0.3.0 | Jan 6, 2021 |
---|---|
0.2.1 | Nov 20, 2020 |
0.2.0 |
|
0.1.0 | Feb 11, 2020 |
#468 in Unix APIs
14,505 downloads per month
Used in 13 crates
(5 directly)
7KB
92 lines
Non-blocking Read and Write a Linux/Unix File Descriptor
Example
use std::convert::TryFrom;
use std::io::Result;
use tokio::prelude::*;
use tokio_fd::AsyncFd;
#[tokio::main]
async fn main() -> Result<()> {
let mut stdin = AsyncFd::try_from(libc::STDIN_FILENO)?;
let mut stdout = AsyncFd::try_from(libc::STDOUT_FILENO)?;
let mut buf = vec![0; 1024];
while let Ok(n) = stdin.read(&mut buf).await {
stdout.write(&buf[..n]).await?;
}
Ok(())
}
License
This project is licensed under either of
at your option.
Dependencies
~2.3–10MB
~92K SLoC