pub trait IndicatorStreamExt: Stream {
    fn indicator<P>(self, op: P) -> Operated<Self, P>
    where
        Self: Sized,
        P: Operator<Self::Item>
, { ... } }
Expand description

Stream extension trait for indicators.

Provided methods

Apply an indicator to the stream.

Implementors