[][src]Struct orbtk::EntityBuilder

pub struct EntityBuilder<'a, E, C> where
    C: ComponentStore,
    E: EntityStore
{ pub entity: Entity, pub component_store: &'a mut C, pub entity_store: &'a mut E, }

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

Fields

entity: Entity

The created entity.

component_store: &'a mut C

Reference to the component store.

entity_store: &'a mut E

Reference to the entity store.

Methods

impl<'a, E, C> EntityBuilder<'a, E, C> where
    C: ComponentStore,
    E: EntityStore
[src]

pub fn components(
    self,
    components: <C as ComponentStore>::Components
) -> EntityBuilder<'a, E, C>
[src]

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

Finishing the creation of the entity.

Auto Trait Implementations

impl<'a, E, C> Send for EntityBuilder<'a, E, C> where
    C: Send,
    E: Send

impl<'a, E, C> Sync for EntityBuilder<'a, E, C> where
    C: Sync,
    E: Sync

impl<'a, E, C> Unpin for EntityBuilder<'a, E, C>

impl<'a, E, C> !UnwindSafe for EntityBuilder<'a, E, C>

impl<'a, E, C> RefUnwindSafe for EntityBuilder<'a, E, C> where
    C: RefUnwindSafe,
    E: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> SetParameter for T