Struct futures_util::future::Remote [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct Remote<Fut: Future> { /* fields omitted */ }
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,
[src]
__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,
Fut: Send,
<Fut as Future>::Output: Send,
impl<Fut> Sync for Remote<Fut> where
Fut: Sync,
<Fut as Future>::Output: Send,
Fut: Sync,
<Fut as Future>::Output: Send,
impl<Fut> !UnwindSafe for Remote<Fut>
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?