mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-01 00:00:10 +02:00
feat(io): Add read_until
This commit is contained in:
@@ -36,6 +36,7 @@ mod flush;
|
||||
mod read_exact;
|
||||
mod read_to_end;
|
||||
mod read;
|
||||
mod read_until;
|
||||
mod split;
|
||||
mod window;
|
||||
mod write_all;
|
||||
@@ -44,6 +45,7 @@ pub use self::flush::{flush, Flush};
|
||||
pub use self::read_exact::{read_exact, ReadExact};
|
||||
pub use self::read_to_end::{read_to_end, ReadToEnd};
|
||||
pub use self::read::read;
|
||||
pub use self::read_until::{read_until, ReadUntil};
|
||||
pub use self::split::{ReadHalf, WriteHalf};
|
||||
pub use self::window::Window;
|
||||
pub use self::write_all::{write_all, WriteAll};
|
||||
|
||||
Reference in New Issue
Block a user