Trait vector::async_read::VecAsyncReadExt
source · pub trait VecAsyncReadExt: AsyncRead {
// Provided method
fn allow_read_until<F>(self, until: F) -> AllowReadUntil<Self, F>
where Self: Sized,
F: Future<Output = ()> { ... }
}
Provided Methods§
sourcefn allow_read_until<F>(self, until: F) -> AllowReadUntil<Self, F>
fn allow_read_until<F>(self, until: F) -> AllowReadUntil<Self, F>
Read data from this reader until the given future resolves.