pub trait SliceExt<T> {
// Required methods
fn copy_from(&mut self, src: &[T]) -> usize
where T: Copy;
fn copy_inner(&mut self, src: usize, dst: usize, len: usize)
where T: Copy;
}
Expand description
Extension methods for slices