pub trait Truncate {
// Required method
fn truncate(&mut self, len: usize);
}Expand description
Truncate the collection to be a specified length.
pub trait Truncate {
// Required method
fn truncate(&mut self, len: usize);
}Truncate the collection to be a specified length.