pub struct ArenaList<T> {
pub nodes: Vec<Option<T>>,
pub nexts: Vec<Option<usize>>,
pub holes: Vec<usize>,
}
Fields§
§nodes: Vec<Option<T>>
§nexts: Vec<Option<usize>>
§holes: Vec<usize>
Auto Trait Implementations§
impl<T> Freeze for ArenaList<T>
impl<T> RefUnwindSafe for ArenaList<T>where
T: RefUnwindSafe,
impl<T> Send for ArenaList<T>where
T: Send,
impl<T> Sync for ArenaList<T>where
T: Sync,
impl<T> Unpin for ArenaList<T>where
T: Unpin,
impl<T> UnwindSafe for ArenaList<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more