Struct ordered_stream::FromSortedStream [−][src]
pub struct FromSortedStream<S> {
pub stream: S,
}
Expand description
An OrderedStream
wrapper around a Stream
.
Unlike FromStream
, the items in the Stream
are themselves ordered with no
additional data.
Fields
stream: S
Implementations
Trait Implementations
Returns true
if the stream should no longer be polled.
Attempt to pull out the next value of this stream, registering the current task for wakeup
if needed, and returning NoneBefore
if it is known that the stream will not produce any
more values ordered before the given point. Read more