1 2pub struct Recast { 3 pub points: Vec<Vec<i32>>, 4} 5 6impl Drop for Recast { 7 fn drop(&mut self) { 8 self.points.clear() 9 } 10}