Struct cranelift_entity::ListPool [−][src]
pub struct ListPool<T: EntityRef + ReservedValue> { /* fields omitted */ }
A memory pool for storing lists of T
.
Implementations
impl<T: EntityRef + ReservedValue> ListPool<T>
[src]
impl<T: EntityRef + ReservedValue> ListPool<T>
[src]pub fn new() -> Self
[src]
Create a new list pool.
pub fn clear(&mut self)
[src]
Clear the pool, forgetting about all lists that use it.
This invalidates any existing entity lists that used this pool to allocate memory.
The pool’s memory is not released to the operating system, but kept around for faster allocation in the future.
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for ListPool<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for ListPool<T> where
T: Send,
T: Send,
impl<T> Sync for ListPool<T> where
T: Sync,
T: Sync,
impl<T> Unpin for ListPool<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for ListPool<T> where
T: UnwindSafe,
T: UnwindSafe,