pub trait Clear {
// Required method
fn clear(&mut self);
}Expand description
A trait for abstracting over the .clear() method available in many
collection types.
pub trait Clear {
// Required method
fn clear(&mut self);
}A trait for abstracting over the .clear() method available in many
collection types.