another-rxrust 0.0.46

A different implementation than `rxRust` for easier use of `ReactiveX` in `Rust`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod async_subject;
pub mod behavior_subject;
pub mod replay_subject;
pub mod subject;

pub mod subjects {
  pub use crate::subjects::async_subject::*;
  pub use crate::subjects::behavior_subject::*;
  pub use crate::subjects::replay_subject::*;
  pub use crate::subjects::subject::*;
}