reactor_rs 0.0.3

reactor-rust is an implementation of the Reactive-Streams.
Documentation
use super::spi::Mono;
use crate::spi::{Publisher, Subscriber, Subscription};
use std::marker::PhantomData;

pub struct Foreach<Z, T, F, E>
where
  T: 'static,
  E: 'static,
  Z: Mono<T, E> + Sized,
  F: 'static + Send + Fn(&T),
{
  zero: Z,
  f: F,
  _t: PhantomData<T>,
  _e: PhantomData<E>,
}

impl<Z, T, F, E> Foreach<Z, T, F, E>
where
  Z: Mono<T, E> + Sized,
  F: 'static + Send + Fn(&T),
{
  pub(crate) fn new(zero: Z, f: F) -> Foreach<Z, T, F, E> {
    Foreach {
      zero,
      f,
      _t: PhantomData,
      _e: PhantomData,
    }
  }
}

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),
{
}

impl<Z, T, F, E> Publisher for Foreach<Z, T, F, E>
where
  Z: Mono<T, E> + Sized,
  F: 'static + Send + Fn(&T),
{
  type Item = T;
  type Error = E;

  fn subscribe(self, subscriber: impl Subscriber<Item = T, Error = E> + 'static + Send) {
    let sub = ForeachSubscriber::new(subscriber, self.f);
    self.zero.subscribe(sub);
  }
}

struct ForeachSubscriber<T, S, F, E>
where
  S: 'static + Send + Subscriber<Item = T, Error = E>,
  F: 'static + Send + Fn(&T),
{
  actual: S,
  action: F,
}

impl<T, S, F, E> ForeachSubscriber<T, S, F, E>
where
  S: 'static + Send + Subscriber<Item = T, Error = E>,
  F: 'static + Send + Fn(&T),
{
  fn new(actual: S, action: F) -> ForeachSubscriber<T, S, F, E> {
    ForeachSubscriber { actual, action }
  }
}

impl<T, S, F, E> Subscriber for ForeachSubscriber<T, S, F, E>
where
  S: 'static + Send + Subscriber<Item = T, Error = E>,
  F: 'static + Send + Fn(&T),
{
  type Item = T;
  type Error = E;

  fn on_subscribe(&self, subscription: impl Subscription) {
    self.actual.on_subscribe(subscription);
  }

  fn on_complete(&self) {
    self.actual.on_complete()
  }

  fn on_next(&self, t: T) {
    (self.action)(&t);
    self.actual.on_next(t);
  }
  fn on_error(&self, e: E) {
    self.actual.on_error(e)
  }
}