[][src]Struct dces::entity::EntityBuilder

pub struct EntityBuilder<'a, T> where
    T: EntityContainer
{ pub entity: Entity, pub entity_component_manager: &'a mut EntityComponentManager, pub entity_container: &'a mut T, }

The entity builder is used to create an entity with components.

Fields

entity: Entity

The created entity.

entity_component_manager: &'a mut EntityComponentManager

Reference to the entity component manager, used to add compoments to the entity.

entity_container: &'a mut T

Methods

impl<'a, T> EntityBuilder<'a, T> where
    T: EntityContainer
[src]

pub fn with<C: Component>(self, component: C) -> Self
[src]

Adds a component of type C to the entity.

pub fn with_shared<C: Component>(self, source: Entity) -> Self
[src]

Adds an entity as source for a shared component of type C.

pub fn with_shared_box(self, source: SharedComponentBox) -> Self
[src]

Adds an entity as source for a shared component box.

pub fn with_box(self, component_box: ComponentBox) -> Self
[src]

Adds a component box to the entity.

pub fn build(self) -> Entity
[src]

Finishing the creation of the entity.

Auto Trait Implementations

impl<'a, T> !Send for EntityBuilder<'a, T>

impl<'a, T> !Sync for EntityBuilder<'a, T>

Blanket Implementations

impl<T> Component for T where
    T: Any
[src]

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

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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