Struct futures_util::io::CopyBuf [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct CopyBuf<'a, R, W: ?Sized> { /* fields omitted */ }
Future for the copy_buf()
function.
Trait Implementations
impl<R, W: ?Sized> Future for CopyBuf<'_, R, W> where
R: AsyncBufRead,
W: AsyncWrite + Unpin,
[src]
impl<R, W: ?Sized> Future for CopyBuf<'_, R, W> where
R: AsyncBufRead,
W: AsyncWrite + Unpin,
[src]impl<'__pin, 'a, R, W: ?Sized> Unpin for CopyBuf<'a, R, W> where
__Origin<'__pin, 'a, R, W>: Unpin,
[src]
__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,
R: RefUnwindSafe,
W: RefUnwindSafe,
impl<'a, R, W: ?Sized> Send for CopyBuf<'a, R, W> where
R: Send,
W: Send,
R: Send,
W: Send,
impl<'a, R, W: ?Sized> Sync for CopyBuf<'a, R, W> where
R: Sync,
W: Sync,
R: Sync,
W: Sync,
impl<'a, R, W> !UnwindSafe for CopyBuf<'a, R, W>
Blanket Implementations
impl<F> IntoFuture for F where
F: Future,
[src]
impl<F> IntoFuture for F where
F: Future,
[src]type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?