publicize ListPool::storage

This commit is contained in:
Graham Kelly 2024-05-13 09:21:34 -04:00
parent 0b72e1df5a
commit 344c45e178

View file

@ -7,7 +7,7 @@ use std::ops::{Index, IndexMut};
#[derive(Clone, Debug)]
pub struct ListPool<T: Clone + Debug> {
storage: Vec<T>,
pub storage: Vec<T>,
}
impl<T: Clone + Debug> Default for ListPool<T> {