Trait bevy::ecs::query::WorldQuery

pub unsafe trait WorldQuery {
    type Item<'a>;
    type Fetch<'a>;
    type ReadOnly: ReadOnlyWorldQuery<State = Self::State>;
    type State: Send + Sync + Sized;

    const IS_DENSE: bool;
    const IS_ARCHETYPAL: bool;

    // Required methods
    fn shrink<'wlong, 'wshort>(item: Self::Item<'wlong>) -> Self::Item<'wshort>
       where 'wlong: 'wshort;
    unsafe fn init_fetch<'w>(
        world: &'w World,
        state: &Self::State,
        last_change_tick: u32,
        change_tick: u32
    ) -> Self::Fetch<'w>;
    unsafe fn clone_fetch<'w>(fetch: &Self::Fetch<'w>) -> Self::Fetch<'w>;
    unsafe fn set_archetype<'w>(
        fetch: &mut Self::Fetch<'w>,
        state: &Self::State,
        archetype: &'w Archetype,
        table: &'w Table
    );
    unsafe fn set_table<'w>(
        fetch: &mut Self::Fetch<'w>,
        state: &Self::State,
        table: &'w Table
    );
    unsafe fn fetch<'w>(
        fetch: &mut Self::Fetch<'w>,
        entity: Entity,
        table_row: TableRow
    ) -> Self::Item<'w>;
    fn update_component_access(
        state: &Self::State,
        access: &mut FilteredAccess<ComponentId>
    );
    fn update_archetype_component_access(
        state: &Self::State,
        archetype: &Archetype,
        access: &mut Access<ArchetypeComponentId>
    );
    fn init_state(world: &mut World) -> Self::State;
    fn matches_component_set(
        state: &Self::State,
        set_contains_id: &impl Fn(ComponentId) -> bool
    ) -> bool;

    // Provided method
    unsafe fn filter_fetch(
        fetch: &mut Self::Fetch<'_>,
        entity: Entity,
        table_row: TableRow
    ) -> bool { ... }
}
Expand description

Types that can be fetched from a World using a Query.

There are many types that natively implement this trait:

  • Component references. Fetches a component by reference (immutably or mutably).
  • WorldQuery tuples. If every element of a tuple implements WorldQuery, then the tuple itself also implements the same trait. This enables a single Query to access multiple components and filter over multiple conditions. Due to the current lack of variadic generics in Rust, the trait has been implemented for tuples from 0 to 15 elements, but nesting of tuples allows infinite WorldQuerys.
  • Component filters. With and Without filters can be applied to check if the queried entity contains or not a particular component.
  • Change detection filters. Added and Changed filters can be applied to detect component changes to an entity.
  • Filter disjunction operator. By default, tuples compose query filters in such a way that all conditions must be satisfied to generate a query item for a given entity. Wrapping a tuple inside an Or operator will relax the requirement to just one condition.
  • Entity. Gets the identifier of the queried entity.
  • Option. By default, a world query only tests entities that have the matching component types. Wrapping it into an Option will increase the query search space, and it will return None if an entity doesn’t satisfy the WorldQuery.
  • AnyOf. Equivalent to wrapping each world query inside it into an Option.
  • ChangeTrackers. Similar to change detection filters but it is used as a query fetch parameter. It exposes methods to check for changes to the wrapped component.

Implementing the trait manually can allow for a fundamentally new type of behaviour.

Trait derivation

Query design can be easily structured by deriving WorldQuery for custom types. Despite the added complexity, this approach has several advantages over using WorldQuery tuples. The most relevant improvements are:

  • Reusability across multiple systems.
  • There is no need to destructure a tuple since all fields are named.
  • Subqueries can be composed together to create a more complex query.
  • Methods can be implemented for the query items.
  • There is no hardcoded limit on the number of elements.

This trait can only be derived if each field either

  • also implements WorldQuery, or
  • is marked with #[world_query(ignore)]. Fields decorated with this attribute must implement Default and will be initialized to the default value as defined by the trait.

The derive macro only supports regular structs (structs with named fields).

use bevy_ecs::query::WorldQuery;

#[derive(WorldQuery)]
struct MyQuery {
    entity: Entity,
    // It is required that all reference lifetimes are explicitly annotated, just like in any
    // struct. Each lifetime should be 'static.
    component_a: &'static ComponentA,
    component_b: &'static ComponentB,
}

fn my_system(query: Query<MyQuery>) {
    for q in &query {
        q.component_a;
    }
}

Macro expansion

Expanding the macro will declare three or six additional structs, depending on whether or not the struct is marked as mutable. For a struct named X, the additional structs will be:

Struct namemutable onlyDescription
XStateUsed as the State type for X and XReadOnly
XItemThe type of the query item for X
XFetchUsed as the Fetch type for X
XReadOnlyItemThe type of the query item for XReadOnly
XReadOnlyFetchUsed as the Fetch type for XReadOnly
XReadOnlyReadOnly variant of X

Adding mutable references

Simply adding mutable references to a derived WorldQuery will result in a compilation error:

#[derive(WorldQuery)]
struct CustomQuery {
    component_a: &'static mut ComponentA,
}

To grant mutable access to components, the struct must be marked with the #[world_query(mutable)] attribute. This will also create three more structs that will be used for accessing the query immutably (see table above).

#[derive(WorldQuery)]
#[world_query(mutable)]
struct CustomQuery {
    component_a: &'static mut ComponentA,
}

Adding methods to query items

It is possible to add methods to query items in order to write reusable logic about related components. This will often make systems more readable because low level logic is moved out from them. It is done by adding impl blocks with methods for the -Item or -ReadOnlyItem generated structs.

#[derive(Component)]
struct Health(f32);

#[derive(Component)]
struct Buff(f32);

#[derive(WorldQuery)]
#[world_query(mutable)]
struct HealthQuery {
    health: &'static mut Health,
    buff: Option<&'static mut Buff>,
}

// `HealthQueryItem` is only available when accessing the query with mutable methods.
impl<'w> HealthQueryItem<'w> {
    fn damage(&mut self, value: f32) {
        self.health.0 -= value;
    }

    fn total(&self) -> f32 {
        self.health.0 + self.buff.as_deref().map_or(0.0, |Buff(buff)| *buff)
    }
}

// `HealthQueryReadOnlyItem` is only available when accessing the query with immutable methods.
impl<'w> HealthQueryReadOnlyItem<'w> {
    fn total(&self) -> f32 {
        self.health.0 + self.buff.map_or(0.0, |Buff(buff)| *buff)
    }
}

fn my_system(mut health_query: Query<HealthQuery>) {
    // The item returned by the iterator is of type `HealthQueryReadOnlyItem`.
    for health in health_query.iter() {
        println!("Total: {}", health.total());
    }
    // The item returned by the iterator is of type `HealthQueryItem`.
    for mut health in &mut health_query {
        health.damage(1.0);
        println!("Total (mut): {}", health.total());
    }
}

Deriving traits for query items

The WorldQuery derive macro does not automatically implement the traits of the struct to the query item types. Something similar can be done by using the #[world_query(derive(...))] attribute. This will apply the listed derivable traits to the query item structs.

#[derive(WorldQuery)]
#[world_query(mutable, derive(Debug))]
struct CustomQuery {
    component_a: &'static ComponentA,
}

// This function statically checks that `T` implements `Debug`.
fn assert_debug<T: std::fmt::Debug>() {}

assert_debug::<CustomQueryItem>();
assert_debug::<CustomQueryReadOnlyItem>();

Query composition

It is possible to use any WorldQuery as a field of another one. This means that a WorldQuery can also be used as a subquery, potentially in multiple places.

#[derive(WorldQuery)]
struct SubQuery {
    component_a: &'static ComponentA,
    component_b: &'static ComponentB,
}

#[derive(WorldQuery)]
struct MyQuery {
    subquery: SubQuery,
    component_c: &'static ComponentC,
}

Filters

Since the query filter type parameter is WorldQuery, it is also possible to use this macro to create filters.

#[derive(WorldQuery)]
struct MyFilter<T: Component, P: Component> {
    // Field names are not relevant, since they are never manually accessed.
    with_a: With<ComponentA>,
    or_filter: Or<(With<ComponentC>, Added<ComponentB>)>,
    generic_tuple: (With<T>, Without<P>),
}

fn my_system(query: Query<Entity, MyFilter<ComponentD, ComponentE>>) {
    // ...
}

Generic Queries

When writing generic code, it is often necessary to use PhantomData to constrain type parameters. Since WorldQuery is implemented for all PhantomData<T> types, this pattern can be used with this macro.

#[derive(WorldQuery)]
pub struct GenericQuery<T> {
    id: Entity,
    marker: PhantomData<T>,
}

Safety

Component access of Self::ReadOnly must be a subset of Self and Self::ReadOnly must match exactly the same archetypes/tables as Self

Implementor must ensure that update_component_access and update_archetype_component_access exactly reflects the results of the following methods:

Required Associated Types§

type Item<'a>

The item returned by this WorldQuery

type Fetch<'a>

Per archetype/table state used by this WorldQuery to fetch Self::Item

type ReadOnly: ReadOnlyWorldQuery<State = Self::State>

The read-only variant of this WorldQuery, which satisfies the ReadOnlyWorldQuery trait.

type State: Send + Sync + Sized

State used to construct a Self::Fetch. This will be cached inside QueryState, so it is best to move as much data / computation here as possible to reduce the cost of constructing Self::Fetch.

Required Associated Constants§

const IS_DENSE: bool

Returns true if (and only if) every table of every archetype matched by this fetch contains all of the matched components. This is used to select a more efficient “table iterator” for “dense” queries. If this returns true, WorldQuery::set_table must be used before WorldQuery::fetch can be called for iterators. If this returns false, WorldQuery::set_archetype must be used before WorldQuery::fetch can be called for iterators.

const IS_ARCHETYPAL: bool

Returns true if (and only if) this Fetch relies strictly on archetypes to limit which components are accessed by the Query.

This enables optimizations for crate::query::QueryIter that rely on knowing exactly how many elements are being iterated (such as Iterator::collect()).

Required Methods§

fn shrink<'wlong, 'wshort>(item: Self::Item<'wlong>) -> Self::Item<'wshort>where 'wlong: 'wshort,

This function manually implements subtyping for the query items.

unsafe fn init_fetch<'w>( world: &'w World, state: &Self::State, last_change_tick: u32, change_tick: u32 ) -> Self::Fetch<'w>

Creates a new instance of this fetch.

Safety

state must have been initialized (via WorldQuery::init_state) using the same world passed in to this function.

unsafe fn clone_fetch<'w>(fetch: &Self::Fetch<'w>) -> Self::Fetch<'w>

While this function can be called for any query, it is always safe to call if Self: ReadOnlyWorldQuery holds.

Safety

While calling this method on its own cannot cause UB it is marked unsafe as the caller must ensure that the returned value is not used in any way that would cause two QueryItem<Self> for the same archetype_row or table_row to be alive at the same time.

unsafe fn set_archetype<'w>( fetch: &mut Self::Fetch<'w>, state: &Self::State, archetype: &'w Archetype, table: &'w Table )

Adjusts internal state to account for the next Archetype. This will always be called on archetypes that match this WorldQuery.

Safety

archetype and tables must be from the World WorldQuery::init_state was called on. state must be the Self::State this was initialized with.

unsafe fn set_table<'w>( fetch: &mut Self::Fetch<'w>, state: &Self::State, table: &'w Table )

Adjusts internal state to account for the next Table. This will always be called on tables that match this WorldQuery.

Safety

table must be from the World WorldQuery::init_state was called on. state must be the Self::State this was initialized with.

unsafe fn fetch<'w>( fetch: &mut Self::Fetch<'w>, entity: Entity, table_row: TableRow ) -> Self::Item<'w>

Fetch Self::Item for either the given entity in the current Table, or for the given entity in the current Archetype. This must always be called after WorldQuery::set_table with a table_row in the range of the current Table or after WorldQuery::set_archetype with a entity in the current archetype.

Safety

Must always be called after WorldQuery::set_table or WorldQuery::set_archetype. entity and table_row must be in the range of the current table and archetype.

fn update_component_access( state: &Self::State, access: &mut FilteredAccess<ComponentId> )

fn update_archetype_component_access( state: &Self::State, archetype: &Archetype, access: &mut Access<ArchetypeComponentId> )

fn init_state(world: &mut World) -> Self::State

fn matches_component_set( state: &Self::State, set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

Provided Methods§

unsafe fn filter_fetch( fetch: &mut Self::Fetch<'_>, entity: Entity, table_row: TableRow ) -> bool

Safety

Must always be called after WorldQuery::set_table or WorldQuery::set_archetype. entity and table_row must be in the range of the current table and archetype.

Implementations on Foreign Types§

§

impl<F0, F1> WorldQuery for (F0, F1)where F0: WorldQuery, F1: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1) as WorldQuery>::Item<'wlong> ) -> <(F0, F1) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1) as WorldQuery>::Fetch<'w> ) -> <(F0, F1) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state(_world: &mut World) -> <(F0, F1) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3> WorldQuery for (F0, F1, F2, F3)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state(_world: &mut World) -> <(F0, F1, F2, F3) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6> WorldQuery for (F0, F1, F2, F3, F4, F5, F6)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> WorldQuery for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>, <F7 as WorldQuery>::Fetch<'w>, <F8 as WorldQuery>::Fetch<'w>, <F9 as WorldQuery>::Fetch<'w>, <F10 as WorldQuery>::Fetch<'w>, <F11 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>, <F7 as WorldQuery>::Item<'w>, <F8 as WorldQuery>::Item<'w>, <F9 as WorldQuery>::Item<'w>, <F10 as WorldQuery>::Item<'w>, <F11 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4> WorldQuery for (F0, F1, F2, F3, F4)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state(_world: &mut World) -> <(F0, F1, F2, F3, F4) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0> WorldQuery for (F0,)where F0: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>,)

§

type Item = (<F0 as WorldQuery>::Item<'w>,)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly,)

§

type State = (<F0 as WorldQuery>::State,)

§

fn shrink<'wlong, 'wshort>( item: <(F0,) as WorldQuery>::Item<'wlong> ) -> <(F0,) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0,) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0,) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0,) as WorldQuery>::Fetch<'w> ) -> <(F0,) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0,) as WorldQuery>::Fetch<'w>, _state: &<(F0,) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0,) as WorldQuery>::Fetch<'w>, _state: &<(F0,) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0,) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0,) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0,) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0,) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0,) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state(_world: &mut World) -> <(F0,) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0,) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13> WorldQuery for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery, F13: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>, <F7 as WorldQuery>::Fetch<'w>, <F8 as WorldQuery>::Fetch<'w>, <F9 as WorldQuery>::Fetch<'w>, <F10 as WorldQuery>::Fetch<'w>, <F11 as WorldQuery>::Fetch<'w>, <F12 as WorldQuery>::Fetch<'w>, <F13 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>, <F7 as WorldQuery>::Item<'w>, <F8 as WorldQuery>::Item<'w>, <F9 as WorldQuery>::Item<'w>, <F10 as WorldQuery>::Item<'w>, <F11 as WorldQuery>::Item<'w>, <F12 as WorldQuery>::Item<'w>, <F13 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly, <F13 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State, <F13 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE && F13::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL && F13::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<T> WorldQuery for Option<T>where T: WorldQuery,

§

type Fetch = OptionFetch<'w, T>

§

type Item = Option<<T as WorldQuery>::Item<'w>>

§

type ReadOnly = Option<<T as WorldQuery>::ReadOnly>

§

type State = <T as WorldQuery>::State

§

fn shrink<'wlong, 'wshort>( item: <Option<T> as WorldQuery>::Item<'wlong> ) -> <Option<T> as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

const IS_DENSE: bool = T::IS_DENSE

§

const IS_ARCHETYPAL: bool = T::IS_ARCHETYPAL

§

unsafe fn init_fetch<'w>( world: &'w World, state: &<T as WorldQuery>::State, last_change_tick: u32, change_tick: u32 ) -> OptionFetch<'w, T>

§

unsafe fn clone_fetch<'w>( fetch: &<Option<T> as WorldQuery>::Fetch<'w> ) -> <Option<T> as WorldQuery>::Fetch<'w>

§

unsafe fn set_archetype<'w>( fetch: &mut OptionFetch<'w, T>, state: &<T as WorldQuery>::State, archetype: &'w Archetype, table: &'w Table )

§

unsafe fn set_table<'w>( fetch: &mut OptionFetch<'w, T>, state: &<T as WorldQuery>::State, table: &'w Table )

§

unsafe fn fetch<'w>( fetch: &mut <Option<T> as WorldQuery>::Fetch<'w>, entity: Entity, table_row: TableRow ) -> <Option<T> as WorldQuery>::Item<'w>

§

fn update_component_access( state: &<T as WorldQuery>::State, access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<T as WorldQuery>::State, archetype: &Archetype, access: &mut Access<ArchetypeComponentId> )

§

fn init_state(world: &mut World) -> <T as WorldQuery>::State

§

fn matches_component_set( _state: &<T as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> WorldQuery for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>, <F7 as WorldQuery>::Fetch<'w>, <F8 as WorldQuery>::Fetch<'w>, <F9 as WorldQuery>::Fetch<'w>, <F10 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>, <F7 as WorldQuery>::Item<'w>, <F8 as WorldQuery>::Item<'w>, <F9 as WorldQuery>::Item<'w>, <F10 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> WorldQuery for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>, <F7 as WorldQuery>::Fetch<'w>, <F8 as WorldQuery>::Fetch<'w>, <F9 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>, <F7 as WorldQuery>::Item<'w>, <F8 as WorldQuery>::Item<'w>, <F9 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5> WorldQuery for (F0, F1, F2, F3, F4, F5)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14> WorldQuery for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery, F13: WorldQuery, F14: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>, <F7 as WorldQuery>::Fetch<'w>, <F8 as WorldQuery>::Fetch<'w>, <F9 as WorldQuery>::Fetch<'w>, <F10 as WorldQuery>::Fetch<'w>, <F11 as WorldQuery>::Fetch<'w>, <F12 as WorldQuery>::Fetch<'w>, <F13 as WorldQuery>::Fetch<'w>, <F14 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>, <F7 as WorldQuery>::Item<'w>, <F8 as WorldQuery>::Item<'w>, <F9 as WorldQuery>::Item<'w>, <F10 as WorldQuery>::Item<'w>, <F11 as WorldQuery>::Item<'w>, <F12 as WorldQuery>::Item<'w>, <F13 as WorldQuery>::Item<'w>, <F14 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly, <F13 as WorldQuery>::ReadOnly, <F14 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State, <F13 as WorldQuery>::State, <F14 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE && F13::IS_DENSE && F14::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL && F13::IS_ARCHETYPAL && F14::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12> WorldQuery for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>, <F7 as WorldQuery>::Fetch<'w>, <F8 as WorldQuery>::Fetch<'w>, <F9 as WorldQuery>::Fetch<'w>, <F10 as WorldQuery>::Fetch<'w>, <F11 as WorldQuery>::Fetch<'w>, <F12 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>, <F7 as WorldQuery>::Item<'w>, <F8 as WorldQuery>::Item<'w>, <F9 as WorldQuery>::Item<'w>, <F10 as WorldQuery>::Item<'w>, <F11 as WorldQuery>::Item<'w>, <F12 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<'__w, T> WorldQuery for &'__w mut Twhere T: Component,

SAFETY: access of &T is a subset of &mut T

§

type Fetch = WriteFetch<'w, T>

§

type Item = Mut<'w, T>

§

type ReadOnly = &'__w T

§

type State = ComponentId

§

fn shrink<'wlong, 'wshort>(item: Mut<'wlong, T>) -> Mut<'wshort, T>where 'wlong: 'wshort,

§

const IS_DENSE: bool = { match <T::Storage>::STORAGE_TYPE { StorageType::Table => true, StorageType::SparseSet => false, } }

§

const IS_ARCHETYPAL: bool = true

§

unsafe fn init_fetch<'w>( world: &'w World, _: &ComponentId, last_change_tick: u32, change_tick: u32 ) -> WriteFetch<'w, T>

§

unsafe fn clone_fetch<'w>( fetch: &<&'__w mut T as WorldQuery>::Fetch<'w> ) -> <&'__w mut T as WorldQuery>::Fetch<'w>

§

unsafe fn set_archetype<'w>( fetch: &mut WriteFetch<'w, T>, component_id: &ComponentId, _archetype: &'w Archetype, table: &'w Table )

§

unsafe fn set_table<'w>( fetch: &mut WriteFetch<'w, T>, _: &ComponentId, table: &'w Table )

§

unsafe fn fetch<'w>( fetch: &mut <&'__w mut T as WorldQuery>::Fetch<'w>, entity: Entity, table_row: TableRow ) -> <&'__w mut T as WorldQuery>::Item<'w>

§

fn update_component_access( _: &ComponentId, access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( _: &ComponentId, archetype: &Archetype, access: &mut Access<ArchetypeComponentId> )

§

fn init_state(world: &mut World) -> ComponentId

§

fn matches_component_set( _: &ComponentId, set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2> WorldQuery for (F0, F1, F2)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state(_world: &mut World) -> <(F0, F1, F2) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<T> WorldQuery for &Twhere T: Component,

SAFETY: Self is the same as Self::ReadOnly

§

type Fetch = ReadFetch<'w, T>

§

type Item = &'w T

§

type ReadOnly = &T

§

type State = ComponentId

§

fn shrink<'wlong, 'wshort>(item: &'wlong T) -> &'wshort Twhere 'wlong: 'wshort,

§

const IS_DENSE: bool = { match <T::Storage>::STORAGE_TYPE { StorageType::Table => true, StorageType::SparseSet => false, } }

§

const IS_ARCHETYPAL: bool = true

§

unsafe fn init_fetch<'w>( world: &'w World, _: &ComponentId, _last_change_tick: u32, _change_tick: u32 ) -> ReadFetch<'w, T>

§

unsafe fn clone_fetch<'w>( fetch: &<&T as WorldQuery>::Fetch<'w> ) -> <&T as WorldQuery>::Fetch<'w>

§

unsafe fn set_archetype<'w>( fetch: &mut ReadFetch<'w, T>, component_id: &ComponentId, _archetype: &'w Archetype, table: &'w Table )

§

unsafe fn set_table<'w>( fetch: &mut ReadFetch<'w, T>, _: &ComponentId, table: &'w Table )

§

unsafe fn fetch<'w>( fetch: &mut <&T as WorldQuery>::Fetch<'w>, entity: Entity, table_row: TableRow ) -> <&T as WorldQuery>::Item<'w>

§

fn update_component_access( _: &ComponentId, access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( _: &ComponentId, archetype: &Archetype, access: &mut Access<ArchetypeComponentId> )

§

fn init_state(world: &mut World) -> ComponentId

§

fn matches_component_set( _: &ComponentId, set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8> WorldQuery for (F0, F1, F2, F3, F4, F5, F6, F7, F8)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>, <F7 as WorldQuery>::Fetch<'w>, <F8 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>, <F7 as WorldQuery>::Item<'w>, <F8 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6, F7, F8) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<T> WorldQuery for PhantomData<T>where T: ?Sized,

SAFETY: PhantomData never accesses any world data.

§

type Item = ()

§

type Fetch = ()

§

type ReadOnly = PhantomData<T>

§

type State = ()

§

fn shrink<'wlong, 'wshort>( _item: <PhantomData<T> as WorldQuery>::Item<'wlong> ) -> <PhantomData<T> as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, _state: &<PhantomData<T> as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <PhantomData<T> as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( _fetch: &<PhantomData<T> as WorldQuery>::Fetch<'w> ) -> <PhantomData<T> as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true

§

const IS_ARCHETYPAL: bool = true

§

unsafe fn set_archetype<'w>( _fetch: &mut <PhantomData<T> as WorldQuery>::Fetch<'w>, _state: &<PhantomData<T> as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <PhantomData<T> as WorldQuery>::Fetch<'w>, _state: &<PhantomData<T> as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <PhantomData<T> as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <PhantomData<T> as WorldQuery>::Item<'w>

§

fn update_component_access( _state: &<PhantomData<T> as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( _state: &<PhantomData<T> as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state(_world: &mut World) -> <PhantomData<T> as WorldQuery>::State

§

fn matches_component_set( _state: &<PhantomData<T> as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl WorldQuery for ()

§

type Fetch = ()

§

type Item = ()

§

type ReadOnly = ()

§

type State = ()

§

fn shrink<'wlong, 'wshort>( item: <() as WorldQuery>::Item<'wlong> ) -> <() as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<() as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <() as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<() as WorldQuery>::Fetch<'w> ) -> <() as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true

§

const IS_ARCHETYPAL: bool = true

§

unsafe fn set_archetype<'w>( _fetch: &mut <() as WorldQuery>::Fetch<'w>, _state: &<() as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <() as WorldQuery>::Fetch<'w>, _state: &<() as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <() as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <() as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <() as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<() as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<() as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state(_world: &mut World) -> <() as WorldQuery>::State

§

fn matches_component_set( state: &<() as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

§

impl<F0, F1, F2, F3, F4, F5, F6, F7> WorldQuery for (F0, F1, F2, F3, F4, F5, F6, F7)where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery,

§

type Fetch = (<F0 as WorldQuery>::Fetch<'w>, <F1 as WorldQuery>::Fetch<'w>, <F2 as WorldQuery>::Fetch<'w>, <F3 as WorldQuery>::Fetch<'w>, <F4 as WorldQuery>::Fetch<'w>, <F5 as WorldQuery>::Fetch<'w>, <F6 as WorldQuery>::Fetch<'w>, <F7 as WorldQuery>::Fetch<'w>)

§

type Item = (<F0 as WorldQuery>::Item<'w>, <F1 as WorldQuery>::Item<'w>, <F2 as WorldQuery>::Item<'w>, <F3 as WorldQuery>::Item<'w>, <F4 as WorldQuery>::Item<'w>, <F5 as WorldQuery>::Item<'w>, <F6 as WorldQuery>::Item<'w>, <F7 as WorldQuery>::Item<'w>)

§

type ReadOnly = (<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly)

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State)

§

fn shrink<'wlong, 'wshort>( item: <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Item<'wlong> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Item<'wshort>where 'wlong: 'wshort,

§

unsafe fn init_fetch<'w>( _world: &'w World, state: &<(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::State, _last_change_tick: u32, _change_tick: u32 ) -> <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Fetch<'w>

§

unsafe fn clone_fetch<'w>( fetch: &<(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Fetch<'w> ) -> <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Fetch<'w>

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL

§

unsafe fn set_archetype<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::State, _archetype: &'w Archetype, _table: &'w Table )

§

unsafe fn set_table<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Fetch<'w>, _state: &<(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::State, _table: &'w Table )

§

unsafe fn fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Item<'w>

§

unsafe fn filter_fetch<'w>( _fetch: &mut <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::Fetch<'w>, _entity: Entity, _table_row: TableRow ) -> bool

§

fn update_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::State, _access: &mut FilteredAccess<ComponentId> )

§

fn update_archetype_component_access( state: &<(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::State, _archetype: &Archetype, _access: &mut Access<ArchetypeComponentId> )

§

fn init_state( _world: &mut World ) -> <(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::State

§

fn matches_component_set( state: &<(F0, F1, F2, F3, F4, F5, F6, F7) as WorldQuery>::State, _set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool

Implementors§

§

impl WorldQuery for DebugName

§

type Item = DebugNameItem<'__w>

§

type Fetch = DebugNameFetch<'__w>

§

type ReadOnly = DebugName

§

type State = DebugNameState

§

const IS_DENSE: bool = true

§

const IS_ARCHETYPAL: bool = true

§

impl WorldQuery for NodeQuery

§

type Item = NodeQueryItem<'__w>

§

type Fetch = NodeQueryFetch<'__w>

§

type ReadOnly = NodeQueryReadOnly

§

type State = NodeQueryState

§

const IS_DENSE: bool = true

§

const IS_ARCHETYPAL: bool = true

§

impl WorldQuery for NodeQueryReadOnly

§

type Item = NodeQueryReadOnlyItem<'__w>

§

type Fetch = NodeQueryReadOnlyFetch<'__w>

§

type ReadOnly = NodeQueryReadOnly

§

type State = NodeQueryState

§

const IS_DENSE: bool = true

§

const IS_ARCHETYPAL: bool = true

§

impl WorldQuery for Entity

SAFETY: no component or archetype access

§

type Fetch = ()

§

type Item = Entity

§

type ReadOnly = Entity

§

type State = ()

§

const IS_DENSE: bool = true

§

const IS_ARCHETYPAL: bool = true

§

impl WorldQuery for AnyOf<()>

§

type Fetch = ()

§

type Item = ()

§

type ReadOnly = AnyOf<()>

§

type State = ()

§

const IS_DENSE: bool = true

§

const IS_ARCHETYPAL: bool = true

§

impl WorldQuery for Or<()>

§

type Fetch = ()

§

type Item = bool

§

type ReadOnly = Or<()>

§

type State = ()

§

const IS_DENSE: bool = true

§

const IS_ARCHETYPAL: bool = true

§

impl<'__w, T> WorldQuery for Ref<'__w, T>where T: Component,

SAFETY: Self is the same as Self::ReadOnly

§

type Fetch = RefFetch<'w, T>

§

type Item = Ref<'w, T>

§

type ReadOnly = Ref<'__w, T>

§

type State = ComponentId

§

const IS_DENSE: bool = { match <T::Storage>::STORAGE_TYPE { StorageType::Table => true, StorageType::SparseSet => false, } }

§

const IS_ARCHETYPAL: bool = true

§

impl<F0> WorldQuery for AnyOf<(F0,)>where F0: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool),)

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>,)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly,)>

§

type State = (<F0 as WorldQuery>::State,)

§

const IS_DENSE: bool = true && F0::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL

§

impl<F0> WorldQuery for Or<(F0,)>where F0: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>,)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly,)>

§

type State = (<F0 as WorldQuery>::State,)

§

const IS_DENSE: bool = true && F0::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL

§

impl<F0, F1> WorldQuery for AnyOf<(F0, F1)>where F0: WorldQuery, F1: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL

§

impl<F0, F1> WorldQuery for Or<(F0, F1)>where F0: WorldQuery, F1: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL

§

impl<F0, F1, F2> WorldQuery for AnyOf<(F0, F1, F2)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL

§

impl<F0, F1, F2> WorldQuery for Or<(F0, F1, F2)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3> WorldQuery for AnyOf<(F0, F1, F2, F3)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3> WorldQuery for Or<(F0, F1, F2, F3)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4> WorldQuery for AnyOf<(F0, F1, F2, F3, F4)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4> WorldQuery for Or<(F0, F1, F2, F3, F4)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5> WorldQuery for Or<(F0, F1, F2, F3, F4, F5)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6, F7)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool), (<F7 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>, Option<<F7 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6, F7)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>, OrFetch<'w, F7>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6, F7, F8)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool), (<F7 as WorldQuery>::Fetch<'w>, bool), (<F8 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>, Option<<F7 as WorldQuery>::Item<'w>>, Option<<F8 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6, F7, F8)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>, OrFetch<'w, F7>, OrFetch<'w, F8>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool), (<F7 as WorldQuery>::Fetch<'w>, bool), (<F8 as WorldQuery>::Fetch<'w>, bool), (<F9 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>, Option<<F7 as WorldQuery>::Item<'w>>, Option<<F8 as WorldQuery>::Item<'w>>, Option<<F9 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>, OrFetch<'w, F7>, OrFetch<'w, F8>, OrFetch<'w, F9>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool), (<F7 as WorldQuery>::Fetch<'w>, bool), (<F8 as WorldQuery>::Fetch<'w>, bool), (<F9 as WorldQuery>::Fetch<'w>, bool), (<F10 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>, Option<<F7 as WorldQuery>::Item<'w>>, Option<<F8 as WorldQuery>::Item<'w>>, Option<<F9 as WorldQuery>::Item<'w>>, Option<<F10 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>, OrFetch<'w, F7>, OrFetch<'w, F8>, OrFetch<'w, F9>, OrFetch<'w, F10>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool), (<F7 as WorldQuery>::Fetch<'w>, bool), (<F8 as WorldQuery>::Fetch<'w>, bool), (<F9 as WorldQuery>::Fetch<'w>, bool), (<F10 as WorldQuery>::Fetch<'w>, bool), (<F11 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>, Option<<F7 as WorldQuery>::Item<'w>>, Option<<F8 as WorldQuery>::Item<'w>>, Option<<F9 as WorldQuery>::Item<'w>>, Option<<F10 as WorldQuery>::Item<'w>>, Option<<F11 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>, OrFetch<'w, F7>, OrFetch<'w, F8>, OrFetch<'w, F9>, OrFetch<'w, F10>, OrFetch<'w, F11>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool), (<F7 as WorldQuery>::Fetch<'w>, bool), (<F8 as WorldQuery>::Fetch<'w>, bool), (<F9 as WorldQuery>::Fetch<'w>, bool), (<F10 as WorldQuery>::Fetch<'w>, bool), (<F11 as WorldQuery>::Fetch<'w>, bool), (<F12 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>, Option<<F7 as WorldQuery>::Item<'w>>, Option<<F8 as WorldQuery>::Item<'w>>, Option<<F9 as WorldQuery>::Item<'w>>, Option<<F10 as WorldQuery>::Item<'w>>, Option<<F11 as WorldQuery>::Item<'w>>, Option<<F12 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>, OrFetch<'w, F7>, OrFetch<'w, F8>, OrFetch<'w, F9>, OrFetch<'w, F10>, OrFetch<'w, F11>, OrFetch<'w, F12>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery, F13: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool), (<F7 as WorldQuery>::Fetch<'w>, bool), (<F8 as WorldQuery>::Fetch<'w>, bool), (<F9 as WorldQuery>::Fetch<'w>, bool), (<F10 as WorldQuery>::Fetch<'w>, bool), (<F11 as WorldQuery>::Fetch<'w>, bool), (<F12 as WorldQuery>::Fetch<'w>, bool), (<F13 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>, Option<<F7 as WorldQuery>::Item<'w>>, Option<<F8 as WorldQuery>::Item<'w>>, Option<<F9 as WorldQuery>::Item<'w>>, Option<<F10 as WorldQuery>::Item<'w>>, Option<<F11 as WorldQuery>::Item<'w>>, Option<<F12 as WorldQuery>::Item<'w>>, Option<<F13 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly, <F13 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State, <F13 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE && F13::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL && F13::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery, F13: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>, OrFetch<'w, F7>, OrFetch<'w, F8>, OrFetch<'w, F9>, OrFetch<'w, F10>, OrFetch<'w, F11>, OrFetch<'w, F12>, OrFetch<'w, F13>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly, <F13 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State, <F13 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE && F13::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL && F13::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14> WorldQuery for AnyOf<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery, F13: WorldQuery, F14: WorldQuery,

§

type Fetch = ((<F0 as WorldQuery>::Fetch<'w>, bool), (<F1 as WorldQuery>::Fetch<'w>, bool), (<F2 as WorldQuery>::Fetch<'w>, bool), (<F3 as WorldQuery>::Fetch<'w>, bool), (<F4 as WorldQuery>::Fetch<'w>, bool), (<F5 as WorldQuery>::Fetch<'w>, bool), (<F6 as WorldQuery>::Fetch<'w>, bool), (<F7 as WorldQuery>::Fetch<'w>, bool), (<F8 as WorldQuery>::Fetch<'w>, bool), (<F9 as WorldQuery>::Fetch<'w>, bool), (<F10 as WorldQuery>::Fetch<'w>, bool), (<F11 as WorldQuery>::Fetch<'w>, bool), (<F12 as WorldQuery>::Fetch<'w>, bool), (<F13 as WorldQuery>::Fetch<'w>, bool), (<F14 as WorldQuery>::Fetch<'w>, bool))

§

type Item = (Option<<F0 as WorldQuery>::Item<'w>>, Option<<F1 as WorldQuery>::Item<'w>>, Option<<F2 as WorldQuery>::Item<'w>>, Option<<F3 as WorldQuery>::Item<'w>>, Option<<F4 as WorldQuery>::Item<'w>>, Option<<F5 as WorldQuery>::Item<'w>>, Option<<F6 as WorldQuery>::Item<'w>>, Option<<F7 as WorldQuery>::Item<'w>>, Option<<F8 as WorldQuery>::Item<'w>>, Option<<F9 as WorldQuery>::Item<'w>>, Option<<F10 as WorldQuery>::Item<'w>>, Option<<F11 as WorldQuery>::Item<'w>>, Option<<F12 as WorldQuery>::Item<'w>>, Option<<F13 as WorldQuery>::Item<'w>>, Option<<F14 as WorldQuery>::Item<'w>>)

§

type ReadOnly = AnyOf<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly, <F13 as WorldQuery>::ReadOnly, <F14 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State, <F13 as WorldQuery>::State, <F14 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE && F13::IS_DENSE && F14::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL && F13::IS_ARCHETYPAL && F14::IS_ARCHETYPAL

§

impl<F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14> WorldQuery for Or<(F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14)>where F0: WorldQuery, F1: WorldQuery, F2: WorldQuery, F3: WorldQuery, F4: WorldQuery, F5: WorldQuery, F6: WorldQuery, F7: WorldQuery, F8: WorldQuery, F9: WorldQuery, F10: WorldQuery, F11: WorldQuery, F12: WorldQuery, F13: WorldQuery, F14: WorldQuery,

§

type Fetch = (OrFetch<'w, F0>, OrFetch<'w, F1>, OrFetch<'w, F2>, OrFetch<'w, F3>, OrFetch<'w, F4>, OrFetch<'w, F5>, OrFetch<'w, F6>, OrFetch<'w, F7>, OrFetch<'w, F8>, OrFetch<'w, F9>, OrFetch<'w, F10>, OrFetch<'w, F11>, OrFetch<'w, F12>, OrFetch<'w, F13>, OrFetch<'w, F14>)

§

type Item = bool

§

type ReadOnly = Or<(<F0 as WorldQuery>::ReadOnly, <F1 as WorldQuery>::ReadOnly, <F2 as WorldQuery>::ReadOnly, <F3 as WorldQuery>::ReadOnly, <F4 as WorldQuery>::ReadOnly, <F5 as WorldQuery>::ReadOnly, <F6 as WorldQuery>::ReadOnly, <F7 as WorldQuery>::ReadOnly, <F8 as WorldQuery>::ReadOnly, <F9 as WorldQuery>::ReadOnly, <F10 as WorldQuery>::ReadOnly, <F11 as WorldQuery>::ReadOnly, <F12 as WorldQuery>::ReadOnly, <F13 as WorldQuery>::ReadOnly, <F14 as WorldQuery>::ReadOnly)>

§

type State = (<F0 as WorldQuery>::State, <F1 as WorldQuery>::State, <F2 as WorldQuery>::State, <F3 as WorldQuery>::State, <F4 as WorldQuery>::State, <F5 as WorldQuery>::State, <F6 as WorldQuery>::State, <F7 as WorldQuery>::State, <F8 as WorldQuery>::State, <F9 as WorldQuery>::State, <F10 as WorldQuery>::State, <F11 as WorldQuery>::State, <F12 as WorldQuery>::State, <F13 as WorldQuery>::State, <F14 as WorldQuery>::State)

§

const IS_DENSE: bool = true && F0::IS_DENSE && F1::IS_DENSE && F2::IS_DENSE && F3::IS_DENSE && F4::IS_DENSE && F5::IS_DENSE && F6::IS_DENSE && F7::IS_DENSE && F8::IS_DENSE && F9::IS_DENSE && F10::IS_DENSE && F11::IS_DENSE && F12::IS_DENSE && F13::IS_DENSE && F14::IS_DENSE

§

const IS_ARCHETYPAL: bool = true && F0::IS_ARCHETYPAL && F1::IS_ARCHETYPAL && F2::IS_ARCHETYPAL && F3::IS_ARCHETYPAL && F4::IS_ARCHETYPAL && F5::IS_ARCHETYPAL && F6::IS_ARCHETYPAL && F7::IS_ARCHETYPAL && F8::IS_ARCHETYPAL && F9::IS_ARCHETYPAL && F10::IS_ARCHETYPAL && F11::IS_ARCHETYPAL && F12::IS_ARCHETYPAL && F13::IS_ARCHETYPAL && F14::IS_ARCHETYPAL

§

impl<Q> WorldQuery for NopWorldQuery<Q>where Q: WorldQuery,

SAFETY: Self::ReadOnly is Self

§

type Fetch = ()

§

type Item = ()

§

type ReadOnly = NopWorldQuery<Q>

§

type State = <Q as WorldQuery>::State

§

const IS_DENSE: bool = Q::IS_DENSE

§

const IS_ARCHETYPAL: bool = true

§

impl<T> WorldQuery for Added<T>where T: Component,

§

type Fetch = AddedFetch<'w, T>

§

type Item = bool

§

type ReadOnly = Added<T>

§

type State = ComponentId

§

const IS_DENSE: bool = { match <T::Storage>::STORAGE_TYPE { StorageType::Table => true, StorageType::SparseSet => false, } }

§

const IS_ARCHETYPAL: bool = false

§

impl<T> WorldQuery for ChangeTrackers<T>where T: Component,

§

type Fetch = ChangeTrackersFetch<'w, T>

§

type Item = ChangeTrackers<T>

§

type ReadOnly = ChangeTrackers<T>

§

type State = ComponentId

§

const IS_DENSE: bool = { match <T::Storage>::STORAGE_TYPE { StorageType::Table => true, StorageType::SparseSet => false, } }

§

const IS_ARCHETYPAL: bool = true

§

impl<T> WorldQuery for Changed<T>where T: Component,

§

type Fetch = ChangedFetch<'w, T>

§

type Item = bool

§

type ReadOnly = Changed<T>

§

type State = ComponentId

§

const IS_DENSE: bool = { match <T::Storage>::STORAGE_TYPE { StorageType::Table => true, StorageType::SparseSet => false, } }

§

const IS_ARCHETYPAL: bool = false

§

impl<T> WorldQuery for With<T>where T: Component,

§

type Fetch = ()

§

type Item = ()

§

type ReadOnly = With<T>

§

type State = ComponentId

§

const IS_DENSE: bool = { match <T::Storage>::STORAGE_TYPE { StorageType::Table => true, StorageType::SparseSet => false, } }

§

const IS_ARCHETYPAL: bool = true

§

impl<T> WorldQuery for Without<T>where T: Component,

§

type Fetch = ()

§

type Item = ()

§

type ReadOnly = Without<T>

§

type State = ComponentId

§

const IS_DENSE: bool = { match <T::Storage>::STORAGE_TYPE { StorageType::Table => true, StorageType::SparseSet => false, } }

§

const IS_ARCHETYPAL: bool = true