pub(super) trait SpecFromElem: Sized {
    // Required method
    fn from_elem<A: Allocator>(elem: Self, n: usize, alloc: A) -> Vec<Self, A>;
}

Required Methods§

source

fn from_elem<A: Allocator>(elem: Self, n: usize, alloc: A) -> Vec<Self, A>

Implementors§