rx-rust 0.3.0

Reactive Programming in Rust inspired by ReactiveX https://reactivex.io/
Documentation
1
2
3
4
5
6
7
pub(crate) struct TestStruct;

impl TestStruct {
    pub(crate) fn consume(self) {}
    pub(crate) fn consume_ref(&self) {}
    pub(crate) fn consume_mut(&mut self) {}
}