You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
async-std/examples/stdin-timeout.rs

21 lines
521 B
Rust

5 years ago
//! Reads a line from stdin, or exits with an error if nothing is read in 5 seconds.
use std::time::Duration;
5 years ago
use async_std::io;
use async_std::task;
5 years ago
fn main() -> io::Result<()> {
// This async scope times out after 5 seconds.
5 years ago
task::block_on(io::timeout(Duration::from_secs(5), async {
5 years ago
let stdin = io::stdin();
// Read a line from the standard input and display it.
5 years ago
let mut line = String::new();
stdin.read_line(&mut line).await?;
dbg!(line);
5 years ago
Ok(())
5 years ago
}))
5 years ago
}