fibers 0.1.13

A Rust library to execute a number of lightweight asynchronous tasks (a.k.a, fibers) based on futures and mio
Documentation
1
2
3
4
5
6
7
8
// Copyright (c) 2016 DWANGO Co., Ltd. All Rights Reserved.
// See the LICENSE file at the top-level directory of this distribution.

//! I/O related functionalities.
pub use self::stdio::{stdin, Stdin};

pub mod poll;
mod stdio;