Trait ordered_stream::FusedOrderedStream[][src]

pub trait FusedOrderedStream: OrderedStream {
    fn is_terminated(&self) -> bool;
}
Expand description

An OrderedStream that tracks if the underlying stream should be polled.

Required methods

Returns true if the stream should no longer be polled.

Implementors