pub struct Arena<Idx, T> { /* private fields */ }
Expand description

An arena allocator with a given index and entity type.

For performance reasons the arena cannot deallocate single entities.

Implementations§

source§

impl<Idx, T> Arena<Idx, T>

source

pub fn new() -> Self

Creates a new empty entity arena.

source

pub fn len(&self) -> usize

Returns the allocated number of entities.

source

pub fn is_empty(&self) -> bool

Returns true if the arena has not yet allocated entities.

source

pub fn clear(&mut self)

Clears all entities from the arena.

source

pub fn iter(&self) -> Iter<'_, Idx, T>

Returns an iterator over the shared reference of the arena entities.

source

pub fn iter_mut(&mut self) -> IterMut<'_, Idx, T>

Returns an iterator over the exclusive reference of the arena entities.

source§

impl<Idx, T> Arena<Idx, T>
where Idx: ArenaIndex,

source

pub fn alloc(&mut self, entity: T) -> Idx

Allocates a new entity and returns its index.

source

pub fn get(&self, index: Idx) -> Option<&T>

Returns a shared reference to the entity at the given index if any.

source

pub fn get_mut(&mut self, index: Idx) -> Option<&mut T>

Returns an exclusive reference to the entity at the given index if any.

Trait Implementations§

source§

impl<Idx: Clone, T: Clone> Clone for Arena<Idx, T>

source§

fn clone(&self) -> Arena<Idx, T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Idx: Debug, T: Debug> Debug for Arena<Idx, T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Idx, T> Default for Arena<Idx, T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<Idx, T> FromIterator<T> for Arena<Idx, T>

source§

fn from_iter<I>(iter: I) -> Self
where I: IntoIterator<Item = T>,

Creates a value from an iterator. Read more
source§

impl<Idx, T> Index<Idx> for Arena<Idx, T>
where Idx: ArenaIndex,

§

type Output = T

The returned type after indexing.
source§

fn index(&self, index: Idx) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<Idx, T> IndexMut<Idx> for Arena<Idx, T>
where Idx: ArenaIndex,

source§

fn index_mut(&mut self, index: Idx) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'a, Idx, T> IntoIterator for &'a Arena<Idx, T>
where Idx: ArenaIndex,

§

type Item = (Idx, &'a T)

The type of the elements being iterated over.
§

type IntoIter = Iter<'a, Idx, T>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, Idx, T> IntoIterator for &'a mut Arena<Idx, T>
where Idx: ArenaIndex,

§

type Item = (Idx, &'a mut T)

The type of the elements being iterated over.
§

type IntoIter = IterMut<'a, Idx, T>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<Idx, T> PartialEq for Arena<Idx, T>
where T: PartialEq,

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Idx, T> Eq for Arena<Idx, T>
where T: Eq,

source§

impl<Idx, T> Send for Arena<Idx, T>
where T: Send,

Arena does not store Idx therefore it is Send without its bound.

source§

impl<Idx, T> Sync for Arena<Idx, T>
where T: Send,

Arena does not store Idx therefore it is Sync without its bound.

Auto Trait Implementations§

§

impl<Idx, T> Freeze for Arena<Idx, T>

§

impl<Idx, T> RefUnwindSafe for Arena<Idx, T>

§

impl<Idx, T> Unpin for Arena<Idx, T>
where Idx: Unpin, T: Unpin,

§

impl<Idx, T> UnwindSafe for Arena<Idx, T>
where Idx: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.