Struct futures_util::io::CopyBufAbortable
source · [−]pub struct CopyBufAbortable<'a, R, W: ?Sized> { /* private fields */ }
Expand description
Future for the [copy_buf()
] function.
Trait Implementations
sourceimpl<R, W> Future for CopyBufAbortable<'_, R, W>where
R: AsyncBufRead,
W: AsyncWrite + Unpin + Sized,
impl<R, W> Future for CopyBufAbortable<'_, R, W>where
R: AsyncBufRead,
W: AsyncWrite + Unpin + Sized,
impl<'__pin, 'a, R, W: ?Sized> Unpin for CopyBufAbortable<'a, R, W>where
__Origin<'__pin, 'a, R, W>: Unpin,
Auto Trait Implementations
impl<'a, R, W> !RefUnwindSafe for CopyBufAbortable<'a, R, W>
impl<'a, R, W: ?Sized> Send for CopyBufAbortable<'a, R, W>where
R: Send,
W: Send,
impl<'a, R, W: ?Sized> Sync for CopyBufAbortable<'a, R, W>where
R: Sync,
W: Sync,
impl<'a, R, W> !UnwindSafe for CopyBufAbortable<'a, R, W>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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?
sourcefn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more