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 */ }
This is supported on crate feature
io only.Expand description
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<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<F> IntoFuture for F where
F: Future, [src]
impl<F> IntoFuture for F where
F: Future, [src]type Output = <F as Future>::Output
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
type Future = F🔬 This is a nightly-only experimental API. (
into_future)Which kind of future are we turning this into?
pub fn into_future(self) -> <F as IntoFuture>::Future[src]
pub fn into_future(self) -> <F as IntoFuture>::Future[src]🔬 This is a nightly-only experimental API. (
into_future)Creates a future from a value.