Struct ordered_stream::IntoOrdering
source · pub struct IntoOrdering<S> { /* private fields */ }
Expand description
A Stream
for the into_ordering
function.
Trait Implementations§
source§impl<S: Debug> Debug for IntoOrdering<S>
impl<S: Debug> Debug for IntoOrdering<S>
source§impl<S> FusedStream for IntoOrdering<S>where
S: FusedOrderedStream,
impl<S> FusedStream for IntoOrdering<S>where S: FusedOrderedStream,
source§fn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns
true
if the stream should no longer be polled.source§impl<S: OrderedStream> Stream for IntoOrdering<S>
impl<S: OrderedStream> Stream for IntoOrdering<S>
§type Item = <S as OrderedStream>::Ordering
type Item = <S as OrderedStream>::Ordering
Values yielded by the stream.