Objects with a destructor.
trait Drop { /* Required methods */ fn drop(&mut self) -> () }
&mut self
The destructor which will be called when the object is dropped.