pub struct ArenaVec<T: Copy> { /* private fields */ }Expand description
A growable array stored entirely within a LinearArena.
Does NOT support drop (elements must be Copy).
Implementations§
Auto Trait Implementations§
impl<T> Freeze for ArenaVec<T>
impl<T> RefUnwindSafe for ArenaVec<T>where
T: RefUnwindSafe,
impl<T> Send for ArenaVec<T>where
T: Send,
impl<T> Sync for ArenaVec<T>where
T: Sync,
impl<T> Unpin for ArenaVec<T>where
T: Unpin,
impl<T> UnsafeUnpin for ArenaVec<T>
impl<T> UnwindSafe for ArenaVec<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