mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-03 15:06:41 +00:00
Merge pull request #1029 from joshtriplett/seek-ext
Export `BufReadExt` and `SeekExt` from `async_std::io`
This commit is contained in:
commit
996ff48f6d
2 changed files with 3 additions and 3 deletions
|
@ -239,7 +239,7 @@ pub trait BufReadExt: BufRead {
|
||||||
|
|
||||||
impl<T: BufRead + ?Sized> BufReadExt for T {}
|
impl<T: BufRead + ?Sized> BufReadExt for T {}
|
||||||
|
|
||||||
pub fn read_until_internal<R: BufReadExt + ?Sized>(
|
pub(crate) fn read_until_internal<R: BufReadExt + ?Sized>(
|
||||||
mut reader: Pin<&mut R>,
|
mut reader: Pin<&mut R>,
|
||||||
cx: &mut Context<'_>,
|
cx: &mut Context<'_>,
|
||||||
byte: u8,
|
byte: u8,
|
||||||
|
|
|
@ -275,7 +275,7 @@ cfg_std! {
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
pub use std::io::{Error, ErrorKind, IoSlice, IoSliceMut, Result, SeekFrom};
|
pub use std::io::{Error, ErrorKind, IoSlice, IoSliceMut, Result, SeekFrom};
|
||||||
|
|
||||||
pub use buf_read::{BufRead, Lines, Split};
|
pub use buf_read::*;
|
||||||
pub use buf_reader::BufReader;
|
pub use buf_reader::BufReader;
|
||||||
pub use buf_writer::{BufWriter, IntoInnerError};
|
pub use buf_writer::{BufWriter, IntoInnerError};
|
||||||
pub use copy::copy;
|
pub use copy::copy;
|
||||||
|
@ -283,7 +283,7 @@ cfg_std! {
|
||||||
pub use empty::{empty, Empty};
|
pub use empty::{empty, Empty};
|
||||||
pub use read::*;
|
pub use read::*;
|
||||||
pub use repeat::{repeat, Repeat};
|
pub use repeat::{repeat, Repeat};
|
||||||
pub use seek::Seek;
|
pub use seek::*;
|
||||||
pub use sink::{sink, Sink};
|
pub use sink::{sink, Sink};
|
||||||
pub use write::*;
|
pub use write::*;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue