Skip to main content

rstl_collection/
dispose.rs

1pub trait Disposable {
2    fn dispose(&mut self);
3    fn is_disposed(&self) -> bool;
4}