Struct legion::query::ChunkView[][src]

pub struct ChunkView<'a, F: Fetch> { /* fields omitted */ }

Provides access to slices of components for entities which have the same component layout.

A single index in any of the slices contained in a chunk belong to the same entity.

Implementations

impl<'a, F: Fetch> ChunkView<'a, F>[src]

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

Returns the archetype that all entities in the chunk belong to.

pub fn component_slice<T: Component>(&self) -> Option<&[T]>[src]

Returns a slice of components.

May return None if the chunk’s view does not declare access to the component type.

pub fn component_slice_mut<T: Component>(&mut self) -> Option<&mut [T]>[src]

Returns a mutable slice of components.

May return None if the chunk’s view does not declare access to the component type.

pub fn into_components(self) -> F::Data[src]

Converts the chunk into a tuple of its inner slices.

Examples

let mut query = <(Entity, Read<A>, Write<B>, TryRead<C>, TryWrite<D>)>::query();
for chunk in query.iter_chunks_mut(&mut world) {
    let slices: (&[Entity], &[A], &mut [B], Option<&[C]>, Option<&mut [D]>) =
        chunk.into_components();
}

pub fn get_components(&self) -> F::Data where
    F: ReadOnlyFetch, 
[src]

Converts the chunk into a tuple of its inner slices.

Only usable with views whose elements are all read-only.

Examples

let mut query = <(Entity, Read<A>, TryRead<B>)>::query();
for chunk in query.iter_chunks_mut(&mut world) {
    let slices: (&[Entity], &[A], Option<&[B]>) = chunk.get_components();
}

pub fn into_iter_entities(
    self
) -> impl Iterator<Item = (Entity, <F as IntoIndexableIter>::Item)> + 'a where
    <F as IntoIndexableIter>::IntoIter: 'a, 
[src]

Converts the chunk into an iterator which yields tuples of (Entity, components).

Trait Implementations

impl<'a, F: Fetch> IntoIterator for ChunkView<'a, F>[src]

type IntoIter = <F as IntoIndexableIter>::IntoIter

Which kind of iterator are we turning this into?

type Item = <F as IntoIndexableIter>::Item

The type of the elements being iterated over.

impl<'a, F: Fetch> IntoParallelIterator for ChunkView<'a, F>[src]

type Iter = Par<<F as IntoIndexableIter>::IntoIter>

The parallel iterator type that will be created.

type Item = <<F as IntoIndexableIter>::IntoIter as TrustedRandomAccess>::Item

The type of item that the parallel iterator will produce.

Auto Trait Implementations

impl<'a, F> !RefUnwindSafe for ChunkView<'a, F>

impl<'a, F> Send for ChunkView<'a, F>

impl<'a, F> Sync for ChunkView<'a, F>

impl<'a, F> Unpin for ChunkView<'a, F> where
    F: Unpin

impl<'a, F> !UnwindSafe for ChunkView<'a, F>

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> Pointable for T

type Init = T

The type for initializers.

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.