[][src]Struct reactor_rs::mono::Foreach

pub struct Foreach<Z, T, F, E> where
    T: 'static,
    E: 'static,
    Z: Mono<T, E> + Sized,
    F: 'static + Send + Fn(&T), 
{ /* fields omitted */ }

Trait Implementations

impl<Z, T, F, E> Mono<T, E> for Foreach<Z, T, F, E> where
    Z: Mono<T, E> + Sized,
    F: 'static + Send + Fn(&T), 
[src]

impl<Z, T, F, E> Publisher for Foreach<Z, T, F, E> where
    Z: Mono<T, E> + Sized,
    F: 'static + Send + Fn(&T), 
[src]

type Item = T

type Error = E

Auto Trait Implementations

impl<Z, T, F, E> Send for Foreach<Z, T, F, E> where
    E: Send,
    T: Send,
    Z: Send

impl<Z, T, F, E> Sync for Foreach<Z, T, F, E> where
    E: Sync,
    F: Sync,
    T: Sync,
    Z: Sync

impl<Z, T, F, E> Unpin for Foreach<Z, T, F, E> where
    E: Unpin,
    F: Unpin,
    T: Unpin,
    Z: Unpin

impl<Z, T, F, E> UnwindSafe for Foreach<Z, T, F, E> where
    E: UnwindSafe,
    F: UnwindSafe,
    T: UnwindSafe,
    Z: UnwindSafe

impl<Z, T, F, E> RefUnwindSafe for Foreach<Z, T, F, E> where
    E: RefUnwindSafe,
    F: RefUnwindSafe,
    T: RefUnwindSafe,
    Z: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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