pub trait SliceExt<T: Clone> { // Required method fn fill(&mut self, item: T); }
Extension trait for std::slice.
std::slice
Fill a slice with an item.