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§

source

fn allow_read_until<F>(self, until: F) -> AllowReadUntil<Self, F>
where Self: Sized, F: Future<Output = ()>,

Read data from this reader until the given future resolves.

Implementors§

source§

impl<S> VecAsyncReadExt for S
where S: AsyncRead,