pub fn from_elem<T: Clone>(elem: T, count: usize) -> Vec<T, Global>
Create a Vec<T> from a cloneable element T and a count of the number of elements.
Vec<T>