Struct ordered_stream::IntoTupleStream
source · pub struct IntoTupleStream<S> { /* private fields */ }
Expand description
A Stream
for the into_tuple_stream
function.
Trait Implementations§
source§impl<S: Debug> Debug for IntoTupleStream<S>
impl<S: Debug> Debug for IntoTupleStream<S>
source§impl<S> FusedStream for IntoTupleStream<S>where
S: FusedOrderedStream,
impl<S> FusedStream for IntoTupleStream<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 IntoTupleStream<S>
impl<S: OrderedStream> Stream for IntoTupleStream<S>
§type Item = (<S as OrderedStream>::Ordering, <S as OrderedStream>::Data)
type Item = (<S as OrderedStream>::Ordering, <S as OrderedStream>::Data)
Values yielded by the stream.