Struct futures_util::io::Copy
source · pub struct Copy<'a, R, W: ?Sized> { /* private fields */ }
Expand description
Future for the copy()
function.
Trait Implementations§
impl<'__pin, 'a, R, W: ?Sized> Unpin for Copy<'a, R, W>where
__Origin<'__pin, 'a, R, W>: Unpin,
Auto Trait Implementations§
impl<'a, R, W: ?Sized> RefUnwindSafe for Copy<'a, R, W>where
R: RefUnwindSafe,
W: RefUnwindSafe,
impl<'a, R, W: ?Sized> Send for Copy<'a, R, W>where
R: Send,
W: Send,
impl<'a, R, W: ?Sized> Sync for Copy<'a, R, W>where
R: Sync,
W: Sync,
impl<'a, R, W> !UnwindSafe for Copy<'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