Struct std::vec::Vec

pub struct Vec<T> {
    buf: RawVec<T>,
    len: u64,
}
Expand description

A contiguous growable array type, written as Vec<T>, short for ‘vector’.

Fields

buf: RawVeclen: u64