rx-rust 0.3.0

Reactive Programming in Rust inspired by ReactiveX https://reactivex.io/
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![forbid(unsafe_code)]

//! RxRust: A Reactive Extensions library for Rust
//!
//! This library provides a set of tools for composing asynchronous and event-based programs
//! using observable sequences and LINQ-style query operators.
//! See <https://reactivex.io/>

pub mod disposable;
pub mod observable;
pub mod observer;
pub mod operators;
pub mod scheduler;
pub mod subject;
pub mod utils;