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
pub mod bound_drop_disposal;
pub mod boxed_disposal;
pub mod callback_disposal;
pub mod disposable_ext;
pub mod subscription;

/// A trait that represents a disposable resource.
pub trait Disposable {
    /// Disposes of the resource.
    fn dispose(self);
}