feat(io): Add read_until

This commit is contained in:
oberien
2016-09-30 22:06:43 +02:00
parent 866dad2e85
commit ce8a9d460e
2 changed files with 76 additions and 0 deletions
+2
View File
@@ -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};