rx_rust/disposable/
mod.rs

1pub mod bound_drop_disposal;
2pub mod boxed_disposal;
3pub mod callback_disposal;
4pub mod disposable_ext;
5pub mod subscription;
6
7/// A trait that represents a disposable resource.
8pub trait Disposable {
9    /// Disposes of the resource.
10    fn dispose(self);
11}