Struct futures_util::future::Remote
source · [−]pub struct Remote<Fut: Future> { /* private fields */ }
Expand description
A future which sends its output to the corresponding RemoteHandle
.
Created by remote_handle
.
Trait Implementations
impl<'__pin, Fut: Future> Unpin for Remote<Fut>where
__Origin<'__pin, Fut>: Unpin,
Auto Trait Implementations
impl<Fut> !RefUnwindSafe for Remote<Fut>
impl<Fut> Send for Remote<Fut>where
Fut: Send,
<Fut as Future>::Output: Send,
impl<Fut> Sync for Remote<Fut>where
Fut: Sync,
<Fut as Future>::Output: Send,
impl<Fut> !UnwindSafe for Remote<Fut>
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