pub trait ExtendFromSlice {
type Item;
// Required method
fn extend_from_slice(&mut self, other: &[Self::Item]);
}pub trait ExtendFromSlice {
type Item;
// Required method
fn extend_from_slice(&mut self, other: &[Self::Item]);
}