pub trait FusedOrderedStream: OrderedStream {
// Required method
fn is_terminated(&self) -> bool;
}Expand description
An OrderedStream that tracks if the underlying stream should be polled.
Required Methods§
Sourcefn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns true if the stream should no longer be polled.