1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use super::{ super::{ Map, } }; use std::ops::Drop; impl<KeyType:Ord, ContentType> Drop for Map<KeyType, ContentType> { fn drop(&mut self) { self.empty(); } }