Struct futures_util::io::CopyBuf
source · pub struct CopyBuf<'a, R, W: ?Sized> { /* private fields */ }
Expand description
Future for the copy_buf()
function.
Trait Implementations§
source§impl<R, W> Future for CopyBuf<'_, R, W>where
R: AsyncBufRead,
W: AsyncWrite + Unpin + ?Sized,
impl<R, W> Future for CopyBuf<'_, R, W>where
R: AsyncBufRead,
W: AsyncWrite + Unpin + ?Sized,
impl<'__pin, 'a, R, W: ?Sized> Unpin for CopyBuf<'a, R, W>where
__Origin<'__pin, 'a, R, W>: Unpin,
Auto Trait Implementations§
impl<'a, R, W: ?Sized> RefUnwindSafe for CopyBuf<'a, R, W>where
R: RefUnwindSafe,
W: RefUnwindSafe,
impl<'a, R, W: ?Sized> Send for CopyBuf<'a, R, W>where
R: Send,
W: Send,
impl<'a, R, W: ?Sized> Sync for CopyBuf<'a, R, W>where
R: Sync,
W: Sync,
impl<'a, R, W> !UnwindSafe for CopyBuf<'a, R, W>
Blanket Implementations§
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more