pub trait BulkReserve {
    fn bulk_reserve(&mut self, new_entities: &[EntityId]) { ... }
}
Expand description

Reserves memory for a set of entities.

Provided Methods

Reserves memory for all entities in new_entities.

Implementations on Foreign Types

Implementors