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