[][src]Struct shine_ecs::entities::WriteEntities

pub struct WriteEntities<'a> { /* fields omitted */ }

Grant mutable access to the entities inside a System

Methods from Deref<Target = EntityStore>

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<'a> Deref for WriteEntities<'a>[src]

type Target = EntityStore

The resulting type after dereferencing.

impl<'a> DerefMut for WriteEntities<'a>[src]

impl<'a> SystemData<'a> for WriteEntities<'a>[src]

Auto Trait Implementations

impl<'a> Send for WriteEntities<'a>

impl<'a> Sync for WriteEntities<'a>

Blanket Implementations

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

impl<T> From for 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]

impl<'a, T> DynamicSystemData for T where
    T: SystemData<'a>, 
[src]

type Accessor = StaticAccessor<T>

The accessor of the SystemData, which specifies the read and write dependencies and does the fetching. Read more