Struct nj_core::stream::JsThen[][src]

pub struct JsThen<St, F> { /* fields omitted */ }

Implementations

impl<St, F> JsThen<St, F> where
    St: Stream,
    F: FnMut(St::Item), 
[src]

pub fn new(stream: St, f: F) -> JsThen<St, F>[src]

Trait Implementations

impl<St, F> TryIntoJs for JsThen<St, F> where
    St: Stream + Send + 'static,
    F: FnMut(St::Item) + Send + 'static,
    St::Item: Debug
[src]

impl<St: Unpin, F> Unpin for JsThen<St, F>[src]

Auto Trait Implementations

impl<St, F> RefUnwindSafe for JsThen<St, F> where
    F: RefUnwindSafe,
    St: RefUnwindSafe

impl<St, F> Send for JsThen<St, F> where
    F: Send,
    St: Send

impl<St, F> Sync for JsThen<St, F> where
    F: Sync,
    St: Sync

impl<St, F> UnwindSafe for JsThen<St, F> where
    F: UnwindSafe,
    St: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.