rx-rust 0.3.0

Reactive Programming in Rust inspired by ReactiveX https://reactivex.io/
Documentation
use crate::utils::types::NecessarySendSync;
use crate::{
    disposable::subscription::Subscription,
    observable::Observable,
    observer::{Observer, Termination},
};
use educe::Educe;
use std::convert::Infallible;

/// Creates an Observable that emits no items and terminates with an error.
/// See <https://reactivex.io/documentation/operators/empty-never-throw.html>
///
/// # Examples
/// ```rust
/// use rx_rust::{
///     observable::observable_ext::ObservableExt,
///     observer::Termination,
///     operators::creating::throw::Throw,
/// };
/// use std::convert::Infallible;
///
/// let mut terminations = Vec::new();
///
/// Throw::new("boom").subscribe_with_callback(
///     |value: Infallible| panic!("`Throw` should not emit values"),
///     |termination| terminations.push(termination),
/// );
///
/// assert_eq!(terminations, vec![Termination::Error("boom")]);
/// ```
#[derive(Educe)]
#[educe(Debug, Clone)]
pub struct Throw<E>(E);

impl<E> Throw<E> {
    pub fn new(error: E) -> Self {
        Self(error)
    }
}

impl<'or, 'sub, E> Observable<'or, 'sub, Infallible, E> for Throw<E> {
    fn subscribe(
        self,
        observer: impl Observer<Infallible, E> + NecessarySendSync + 'or,
    ) -> Subscription<'sub> {
        observer.on_termination(Termination::Error(self.0));
        Subscription::default()
    }
}