[][src]Struct async_ecs::entity::entities::AtomicBuilder

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

An entity builder from EntitiesRes. Allows building an entity with its components if you have mutable access to the component storages.

Implementations

impl<'a> AtomicBuilder<'a>[src]

pub fn with<T: Component>(
    self,
    storage: &mut WriteStorage<'_, T>,
    component: T
) -> Self
[src]

Appends a component and associates it with the entity.

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

Finishes the building and returns the entity.

Trait Implementations

impl<'a> Drop for AtomicBuilder<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for AtomicBuilder<'a>

impl<'a> Send for AtomicBuilder<'a>

impl<'a> Sync for AtomicBuilder<'a>

impl<'a> Unpin for AtomicBuilder<'a>

impl<'a> UnwindSafe for AtomicBuilder<'a>

Blanket Implementations

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

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

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

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

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

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

impl<T> Resource for T where
    T: Any + Send + Sync
[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.