#[must_use = "steams do nothing unless polled"]
pub struct Forward<St: Stream, Si: Sink + Unpin> { /* fields omitted */ }
Future for the Stream::forward
combinator, which sends a stream of values
to a sink and then flushes the sink.
Note: this is only usable with Unpin
sinks, so Sink
s that aren't Unpin
will need to be pinned in order to be used with this combinator.
Formats the value using the given formatter. Read more
🔬 This is a nightly-only experimental API. (futures_api
)
futures in libcore are unstable
The result of the Future
.
🔬 This is a nightly-only experimental API. (futures_api
)
futures in libcore are unstable
Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more