pub fn clone_slice<T>(slice: &[T]) -> Box<[T]>where T: Clone,
Clones every element of the given slice and returns an owned pointer to the copy.