[][src]Type Definition generic_vec::HeapVec

type HeapVec<T> = GenericVec<T, Heap<T>>;

A heap backed vector with a growable capacity

Implementations

impl<T> HeapVec<T>[src]

pub const fn new() -> Self[src]

Create a new empty HeapVec

Trait Implementations

impl<T> From<Vec<T, Global>> for HeapVec<T>[src]