pub trait DenseStorage<T>: Borrow<[T]> + Send + Sync { // Required method fn to_vec(self) -> Vec<T>; }