Enum ordered_stream::PollResult [−][src]
pub enum PollResult<Ordering, Data> {
Item {
data: Data,
ordering: Ordering,
},
NoneBefore,
Terminated,
}
Expand description
The result of a OrderedStream::poll_next_before
operation.
Variants
An item with a corresponding ordering token.
This stream will not return any items prior to the given point.
This stream is terminated and should not be polled again.