async_buf_reader_utils/lib.rs
1//! # async-std BufReader additional functionality
2//!
3//! Adds additional functionality to the [async-std](https://github.com/async-rs/async-std) crate for the async BufReader implementation.
4//!
5
6pub mod read_until_index_found;
7
8 #[doc = r#"
9 The async BufReader utils prelude.
10
11 The purpose of this module is to alleviate imports for all of the async BufReader utils traits
12 by adding a glob import to the top of heavy modules:
13
14 ```
15 # #![allow(unused_imports)]
16 use async_buf_reader_utils::prelude::*;
17 ```
18
19 "#]
20pub mod prelude {
21 #[doc(no_inline)]
22 pub use crate::read_until_index_found::*;
23}