[][src]Struct shine_ecs::entities::EntityStore

pub struct EntityStore { /* fields omitted */ }

Methods

impl EntityStore[src]

pub fn new() -> EntityStore[src]

pub fn is_empty(&self) -> bool[src]

pub fn len(&self) -> usize[src]

pub fn create(&mut self) -> Entity[src]

Allocates a new entity

pub fn create_with_id(&mut self, id: usize) -> Option<Entity>[src]

Allocates an entity with the given id. Usually used to keep two system in sync.

pub fn destroy(&mut self, entity: Entity)[src]

Destroy an entity

pub fn raised(&self) -> &STVector[src]

pub fn drain_raised(&mut self) -> DrainIter<UnitStore>[src]

pub fn killed(&self) -> &STVector[src]

pub fn drain_killed(&mut self) -> DrainIter<UnitStore>[src]

Trait Implementations

impl Default for EntityStore[src]

Auto Trait Implementations

impl Send for EntityStore

impl Sync for EntityStore

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Resource for T where
    T: Any + Send + Sync
[src]