1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/// anything that can be cleared
pub trait Clear {
    fn clear(&mut self);
}

impl<T> Clear for Option<T> {
    fn clear(&mut self) {
        self.take();
    }
}

mod util {
    pub fn clear_string(s: &mut String) {
        s.clear();
    }

    pub fn clear_vec<T>(v: &mut Vec<T>) {
        v.clear();
    }
}

impl Clear for String {
    fn clear(&mut self) {
        util::clear_string(self);
    }
}

impl<T> Clear for Vec<T> {
    fn clear(&mut self) {
        util::clear_vec(self);
    }
}