rxrust 0.7.2

A Rust implementation of Reactive Extensions.
Documentation
use crate::observer::{ObserverComplete, ObserverError, ObserverNext};
use crate::prelude::*;

#[derive(Clone)]
pub struct SubscribeAll<N, E, C> {
  next: N,
  error: E,
  complete: C,
}

impl<N, E, C> SubscribeAll<N, E, C> {
  #[inline(always)]
  pub fn new(next: N, error: E, complete: C) -> Self {
    SubscribeAll {
      next,
      error,
      complete,
    }
  }
}

impl<N, E, C> IntoShared for SubscribeAll<N, E, C>
where
  Self: Send + Sync + 'static,
{
  type Shared = Self;
  #[inline(always)]
  fn to_shared(self) -> Self::Shared { self }
}

impl<N, E, C> ObserverComplete for SubscribeAll<N, E, C>
where
  C: FnMut(),
{
  #[inline(always)]
  fn complete(&mut self) { (self.complete)(); }
}

impl<N, E, C, Err> ObserverError<Err> for SubscribeAll<N, E, C>
where
  E: FnMut(Err),
{
  #[inline(always)]
  default fn error(&mut self, err: Err) { (self.error)(err); }
}

impl<N, E, C, Err> ObserverError<&mut Err> for SubscribeAll<N, E, C>
where
  E: for<'r> FnMut(&'r mut Err),
{
  #[inline(always)]
  fn error(&mut self, err: &mut Err) { (self.error)(err); }
}

impl<N, E, C, Item> ObserverNext<Item> for SubscribeAll<N, E, C>
where
  N: FnMut(Item),
{
  #[inline(always)]
  default fn next(&mut self, value: Item) { (self.next)(value); }
}

impl<N, E, C, Item> ObserverNext<&mut Item> for SubscribeAll<N, E, C>
where
  N: for<'r> FnMut(&'r mut Item),
{
  #[inline(always)]
  fn next(&mut self, value: &mut Item) { (self.next)(value); }
}

pub trait SubscribableAll<N, E, C> {
  /// A type implementing [`SubscriptionLike`]
  type Unsub;

  /// Invokes an execution of an Observable and registers Observer handlers for
  /// notifications it will emit.
  ///
  /// * `error`: A handler for a terminal event resulting from an error.
  /// * `complete`: A handler for a terminal event resulting from successful
  /// completion.
  ///
  fn subscribe_all(self, next: N, error: E, complete: C) -> Self::Unsub;
}

impl<S, N, E, C> SubscribableAll<N, E, C> for S
where
  S: RawSubscribable<Subscriber<SubscribeAll<N, E, C>, LocalSubscription>>,
{
  type Unsub = S::Unsub;
  fn subscribe_all(self, next: N, error: E, complete: C) -> Self::Unsub
  where
    Self: Sized,
  {
    let subscriber = Subscriber::local(SubscribeAll {
      next,
      error,
      complete,
    });
    self.raw_subscribe(subscriber)
  }
}