pub trait NjStream: Stream {
    fn js_then<F>(self, fut: F) -> JsThen<Self, F>
    where
        F: FnMut(Self::Item),
        Self: Sized
, { ... } }

Provided Methods§

source

fn js_then<F>(self, fut: F) -> JsThen<Self, F>where
    F: FnMut(Self::Item),
    Self: Sized,

Implementors§

source§

impl<T> NjStream for Twhere
    T: Stream + ?Sized,