A custom trait object for polling streams, roughly akin to
Box<dyn Stream<Item = T> + 'a>.
This custom trait object was introduced for two reasons:
Currently it is not possible to take dyn Trait by value and
Box<dyn Trait> is not available in no_std contexts.
The Stream trait is currently not object safe: The Stream::poll_next
method makes uses the arbitrary self types feature and traits in which
this feature is used are currently not object safe due to current compiler
limitations. (See tracking issue for arbitrary self types for more
information #44874)
Converts the LocalStreamObj into a StreamObj
To make this operation safe one has to ensure that the UnsafeStreamObj
instance from which this LocalStreamObj was created actually
implements Send.
Attempt to pull out the next value of this stream, registering the current task for wakeup if the value is not yet available, and returning None if the stream is exhausted. Read more
Filters the values produced by this stream while simultaneously mapping them to a different type according to the provided asynchronous closure. Read more
Runs this stream to completion, executing the provided asynchronous closure for each element on the stream concurrently as elements become available. Read more
This combinator will attempt to pull items from both streams. Each stream will be polled in a round-robin fashion, and whenever a stream is ready to yield an item that item is yielded. Read more
Creates a future that attempts to resolve the next item in the stream. If an error is encountered before the next item, the error is returned instead. Read more
Attempts to run this stream to completion, executing the provided asynchronous closure for each element on the stream concurrently as elements become available, exiting as soon as an error occurs. Read more
Attempt to filter the values produced by this stream while simultaneously mapping them to a different type according to the provided asynchronous closure. Read more
Wraps a [TryStream] into a stream compatible with libraries using futures 0.1 Stream. Requires the compat feature to be enabled. ``` #![feature(async_await, await_macro, futures_api)] use futures::future::{FutureExt, TryFutureExt}; use futures::spawn; use futures::compat::TokioDefaultSpawner; # let (tx, rx) = futures::channel::oneshot::channel(); Read more