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

Stream extension trait for indicators.

Provided Methods§

Apply an Operator on the stream.

Apply an AsyncOperator on the stream.

Implementors§