15 releases

0.2.0-alpha.6 Oct 1, 2019
0.2.0-alpha.4 Aug 29, 2019
0.1.7 Feb 5, 2020
0.1.6 Mar 2, 2019
0.0.0 Feb 1, 2018

#57 in #fs-file

Download history 17211/week @ 2023-11-26 18888/week @ 2023-12-03 18546/week @ 2023-12-10 16677/week @ 2023-12-17 11158/week @ 2023-12-24 13923/week @ 2023-12-31 19562/week @ 2024-01-07 18054/week @ 2024-01-14 17483/week @ 2024-01-21 18421/week @ 2024-01-28 18648/week @ 2024-02-04 18324/week @ 2024-02-11 22783/week @ 2024-02-18 22717/week @ 2024-02-25 21916/week @ 2024-03-03 9508/week @ 2024-03-10

78,712 downloads per month
Used in fewer than 19 crates

MIT license

540KB
10K SLoC

Tokio FS

Asynchronous filesystem manipulation operations (and stdin, stdout, stderr).

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tokio by you, shall be licensed as MIT, without any additional terms or conditions.


lib.rs:

Asynchronous file and standard stream adaptation.

This module contains utility methods and adapter types for input/output to files or standard streams (Stdin, Stdout, Stderr), and filesystem manipulation, for use within (and only within) a Tokio runtime.

Tasks run by worker threads should not block, as this could delay servicing reactor events. Portable filesystem operations are blocking, however. This module offers adapters which use a blocking annotation to inform the runtime that a blocking operation is required. When necessary, this allows the runtime to convert the current thread from a worker to a backup thread, where blocking is acceptable.

Usage

Where possible, users should prefer the provided asynchronous-specific traits such as AsyncRead, or methods returning a Future or Poll type. Adaptions also extend to traits like std::io::Read where methods return std::io::Result. Be warned that these adapted methods may return std::io::ErrorKind::WouldBlock if a worker thread can not be converted to a backup thread immediately. See tokio-executor for more details of the threading model and blocking.

Dependencies

~3MB
~62K SLoC