pub type VecRef<T, U = T> = OwningRef<Vec<T>, U>;
Typedef of a owning reference that uses a Vec as the owner.
Vec