pub struct ArenaVec<'a> { /* private fields */ }Expand description
A vector-like structure backed by arena memory.
This provides push/extend operations while using arena memory. When dropped, the arena space is not reclaimed (arena is bump-only).
Implementations§
Source§impl<'a> ArenaVec<'a>
impl<'a> ArenaVec<'a>
Auto Trait Implementations§
impl<'a> Freeze for ArenaVec<'a>
impl<'a> !RefUnwindSafe for ArenaVec<'a>
impl<'a> !Send for ArenaVec<'a>
impl<'a> !Sync for ArenaVec<'a>
impl<'a> Unpin for ArenaVec<'a>
impl<'a> !UnwindSafe for ArenaVec<'a>
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