[][src]Struct legion::storage::ArchetypeWriter

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

Provides access to writers for writing new entities into an archetype in a world.

Users must claim all components contained in the archetype and write an equal number of components to each as the number of entities pushed to the writer.

Implementations

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

pub fn new(
    arch_index: ArchetypeIndex,
    archetype: &'a mut Archetype,
    components: MultiMut<'a>
) -> Self
[src]

Constructs a new archetype writer.

pub fn archetype(&self) -> &Archetype[src]

Returns the archetype being written to.

pub fn claim_components<T: Component>(&mut self) -> ComponentWriter<'a, T>[src]

Claims a component storage for a given component.

Panics

Panics if the storage for the requested component type has already been claimed or does not exist in the archetype.

pub fn claim_components_unknown(
    &mut self,
    type_id: ComponentTypeId
) -> UnknownComponentWriter<'a>
[src]

Claims a component storage for a given component.

Panics

Panics if the storage for the requested component type has already been claimed or does not exist in the archetype.

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

Pushes an entity ID into the archetype.

pub fn reserve(&mut self, additional: usize)[src]

Reserves capacity for at least additional extra entity IDs in the archetype.

pub fn inserted(&self) -> (ComponentIndex, &[Entity])[src]

Returns a slice of entities inserted by this writer, and the component index of the first inserted entity.

Trait Implementations

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

Auto Trait Implementations

impl<'a> !RefUnwindSafe for ArchetypeWriter<'a>

impl<'a> Send for ArchetypeWriter<'a>

impl<'a> Sync for ArchetypeWriter<'a>

impl<'a> Unpin for ArchetypeWriter<'a>

impl<'a> !UnwindSafe for ArchetypeWriter<'a>

Blanket Implementations

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

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

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,