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