pub type VecPool<T> = Pool<Vec<T>>;
Pool for reusing vector allocations.
pub struct VecPool<T> { entries: Vec<Vec<T>>, clear_on_submit: bool, }
entries: Vec<Vec<T>>
clear_on_submit: bool