Struct bevy::ecs::query::QueryState
source · #[repr(C)]pub struct QueryState<D, F = ()>where
D: QueryData,
F: QueryFilter,{ /* private fields */ }
Expand description
Provides scoped access to a World
state according to a given QueryData
and QueryFilter
.
Implementations§
source§impl<D, F> QueryState<D, F>where
D: QueryData,
F: QueryFilter,
impl<D, F> QueryState<D, F>where
D: QueryData,
F: QueryFilter,
sourcepub fn as_readonly(&self) -> &QueryState<<D as QueryData>::ReadOnly, F>
pub fn as_readonly(&self) -> &QueryState<<D as QueryData>::ReadOnly, F>
Converts this QueryState
reference to a QueryState
that does not access anything mutably.
sourcepub fn as_nop(&self) -> &QueryState<NopWorldQuery<D>, F>
pub fn as_nop(&self) -> &QueryState<NopWorldQuery<D>, F>
Converts this QueryState
reference to a QueryState
that does not return any data
which can be faster.
This doesn’t use NopWorldQuery
as it loses filter functionality, for example
NopWorldQuery<Changed<T>>
is functionally equivalent to With<T>
.
sourcepub fn archetype_component_access(&self) -> &Access<ArchetypeComponentId>
pub fn archetype_component_access(&self) -> &Access<ArchetypeComponentId>
Returns the archetype components accessed by this query.
sourcepub fn component_access(&self) -> &FilteredAccess<ComponentId>
pub fn component_access(&self) -> &FilteredAccess<ComponentId>
Returns the components accessed by this query.
sourcepub fn matched_tables(&self) -> &[TableId]
pub fn matched_tables(&self) -> &[TableId]
Returns the tables matched by this query.
sourcepub fn matched_archetypes(&self) -> &[ArchetypeId]
pub fn matched_archetypes(&self) -> &[ArchetypeId]
Returns the archetypes matched by this query.
source§impl<D, F> QueryState<D, F>where
D: QueryData,
F: QueryFilter,
impl<D, F> QueryState<D, F>where
D: QueryData,
F: QueryFilter,
sourcepub fn new(world: &mut World) -> QueryState<D, F>
pub fn new(world: &mut World) -> QueryState<D, F>
Creates a new QueryState
from a given World
and inherits the result of world.id()
.
sourcepub fn from_builder(builder: &mut QueryBuilder<'_, D, F>) -> QueryState<D, F>
pub fn from_builder(builder: &mut QueryBuilder<'_, D, F>) -> QueryState<D, F>
Creates a new QueryState
from a given QueryBuilder
and inherits it’s FilteredAccess
.
sourcepub fn update_archetypes(&mut self, world: &World)
pub fn update_archetypes(&mut self, world: &World)
Updates the state’s internal view of the World
’s archetypes. If this is not called before querying data,
the results may not accurately reflect what is in the world
.
This is only required if a manual
method (such as Self::get_manual
) is being called, and it only needs to
be called if the world
has been structurally mutated (i.e. added/removed a component or resource). Users using
non-manual
methods such as QueryState::get
do not need to call this as it will be automatically called for them.
If you have an UnsafeWorldCell
instead of &World
, consider using QueryState::update_archetypes_unsafe_world_cell
.
Panics
If world
does not match the one used to call QueryState::new
for this instance.
sourcepub fn update_archetypes_unsafe_world_cell(
&mut self,
world: UnsafeWorldCell<'_>
)
pub fn update_archetypes_unsafe_world_cell( &mut self, world: UnsafeWorldCell<'_> )
Updates the state’s internal view of the world
’s archetypes. If this is not called before querying data,
the results may not accurately reflect what is in the world
.
This is only required if a manual
method (such as Self::get_manual
) is being called, and it only needs to
be called if the world
has been structurally mutated (i.e. added/removed a component or resource). Users using
non-manual
methods such as QueryState::get
do not need to call this as it will be automatically called for them.
Note
This method only accesses world metadata.
Panics
If world
does not match the one used to call QueryState::new
for this instance.
sourcepub fn validate_world(&self, world_id: WorldId)
pub fn validate_world(&self, world_id: WorldId)
sourcepub fn new_archetype(&mut self, archetype: &Archetype)
pub fn new_archetype(&mut self, archetype: &Archetype)
Update the current QueryState
with information from the provided Archetype
(if applicable, i.e. if the archetype has any intersecting ComponentId
with the current QueryState
).
sourcepub fn matches_component_set(
&self,
set_contains_id: &impl Fn(ComponentId) -> bool
) -> bool
pub fn matches_component_set( &self, set_contains_id: &impl Fn(ComponentId) -> bool ) -> bool
Returns true
if this query matches a set of components. Otherwise, returns false
.
sourcepub fn update_archetype_component_access(&mut self, archetype: &Archetype)
pub fn update_archetype_component_access(&mut self, archetype: &Archetype)
For the given archetype
, adds any component accessed used by this query’s underlying FilteredAccess
to access
.
sourcepub fn transmute<NewD>(&self, world: &World) -> QueryState<NewD>where
NewD: QueryData,
pub fn transmute<NewD>(&self, world: &World) -> QueryState<NewD>where
NewD: QueryData,
Use this to transform a QueryState
into a more generic QueryState
.
This can be useful for passing to another function that might take the more general form.
See Query::transmute_lens
for more details.
You should not call update_archetypes
on the returned QueryState
as the result will be unpredictable.
You might end up with a mix of archetypes that only matched the original query + archetypes that only match
the new QueryState
. Most of the safe methods on QueryState
call QueryState::update_archetypes
internally, so this
best used through a Query
.
sourcepub fn transmute_filtered<NewD, NewF>(
&self,
world: &World
) -> QueryState<NewD, NewF>where
NewD: QueryData,
NewF: QueryFilter,
pub fn transmute_filtered<NewD, NewF>(
&self,
world: &World
) -> QueryState<NewD, NewF>where
NewD: QueryData,
NewF: QueryFilter,
Creates a new QueryState
with the same underlying FilteredAccess
, matched tables and archetypes
as self but with a new type signature.
Panics if NewD
or NewF
require accesses that this query does not have.
sourcepub fn get<'w>(
&mut self,
world: &'w World,
entity: Entity
) -> Result<<<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>, QueryEntityError>
pub fn get<'w>( &mut self, world: &'w World, entity: Entity ) -> Result<<<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>, QueryEntityError>
Gets the query result for the given World
and Entity
.
This can only be called for read-only queries, see Self::get_mut
for write-queries.
sourcepub fn get_many<const N: usize, 'w>(
&mut self,
world: &'w World,
entities: [Entity; N]
) -> Result<[<<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>; N], QueryEntityError>
pub fn get_many<const N: usize, 'w>( &mut self, world: &'w World, entities: [Entity; N] ) -> Result<[<<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>; N], QueryEntityError>
Returns the read-only query results for the given array of Entity
.
In case of a nonexisting entity or mismatched component, a QueryEntityError
is
returned instead.
Note that the unlike QueryState::get_many_mut
, the entities passed in do not need to be unique.
Examples
use bevy_ecs::prelude::*;
use bevy_ecs::query::QueryEntityError;
#[derive(Component, PartialEq, Debug)]
struct A(usize);
let mut world = World::new();
let entity_vec: Vec<Entity> = (0..3).map(|i|world.spawn(A(i)).id()).collect();
let entities: [Entity; 3] = entity_vec.try_into().unwrap();
world.spawn(A(73));
let mut query_state = world.query::<&A>();
let component_values = query_state.get_many(&world, entities).unwrap();
assert_eq!(component_values, [&A(0), &A(1), &A(2)]);
let wrong_entity = Entity::from_raw(365);
assert_eq!(query_state.get_many(&world, [wrong_entity]), Err(QueryEntityError::NoSuchEntity(wrong_entity)));
sourcepub fn get_mut<'w>(
&mut self,
world: &'w mut World,
entity: Entity
) -> Result<<D as WorldQuery>::Item<'w>, QueryEntityError>
pub fn get_mut<'w>( &mut self, world: &'w mut World, entity: Entity ) -> Result<<D as WorldQuery>::Item<'w>, QueryEntityError>
sourcepub fn get_many_mut<const N: usize, 'w>(
&mut self,
world: &'w mut World,
entities: [Entity; N]
) -> Result<[<D as WorldQuery>::Item<'w>; N], QueryEntityError>
pub fn get_many_mut<const N: usize, 'w>( &mut self, world: &'w mut World, entities: [Entity; N] ) -> Result<[<D as WorldQuery>::Item<'w>; N], QueryEntityError>
Returns the query results for the given array of Entity
.
In case of a nonexisting entity or mismatched component, a QueryEntityError
is
returned instead.
use bevy_ecs::prelude::*;
use bevy_ecs::query::QueryEntityError;
#[derive(Component, PartialEq, Debug)]
struct A(usize);
let mut world = World::new();
let entities: Vec<Entity> = (0..3).map(|i|world.spawn(A(i)).id()).collect();
let entities: [Entity; 3] = entities.try_into().unwrap();
world.spawn(A(73));
let mut query_state = world.query::<&mut A>();
let mut mutable_component_values = query_state.get_many_mut(&mut world, entities).unwrap();
for mut a in &mut mutable_component_values {
a.0 += 5;
}
let component_values = query_state.get_many(&world, entities).unwrap();
assert_eq!(component_values, [&A(5), &A(6), &A(7)]);
let wrong_entity = Entity::from_raw(57);
let invalid_entity = world.spawn_empty().id();
assert_eq!(query_state.get_many_mut(&mut world, [wrong_entity]).unwrap_err(), QueryEntityError::NoSuchEntity(wrong_entity));
assert_eq!(query_state.get_many_mut(&mut world, [invalid_entity]).unwrap_err(), QueryEntityError::QueryDoesNotMatch(invalid_entity));
assert_eq!(query_state.get_many_mut(&mut world, [entities[0], entities[0]]).unwrap_err(), QueryEntityError::AliasedMutability(entities[0]));
sourcepub fn get_manual<'w>(
&self,
world: &'w World,
entity: Entity
) -> Result<<<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>, QueryEntityError>
pub fn get_manual<'w>( &self, world: &'w World, entity: Entity ) -> Result<<<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>, QueryEntityError>
Gets the query result for the given World
and Entity
.
This method is slightly more efficient than QueryState::get
in some situations, since
it does not update this instance’s internal cache. This method will return an error if entity
belongs to an archetype that has not been cached.
To ensure that the cache is up to date, call QueryState::update_archetypes
before this method.
The cache is also updated in QueryState::new
, QueryState::get
, or any method with mutable
access to self
.
This can only be called for read-only queries, see Self::get_mut
for mutable queries.
sourcepub unsafe fn get_unchecked<'w>(
&mut self,
world: UnsafeWorldCell<'w>,
entity: Entity
) -> Result<<D as WorldQuery>::Item<'w>, QueryEntityError>
pub unsafe fn get_unchecked<'w>( &mut self, world: UnsafeWorldCell<'w>, entity: Entity ) -> Result<<D as WorldQuery>::Item<'w>, QueryEntityError>
sourcepub unsafe fn get_component_unchecked_mut<T, 'w>(
&self,
world: UnsafeWorldCell<'w>,
entity: Entity,
last_run: Tick,
this_run: Tick
) -> Result<Mut<'w, T>, QueryComponentError>where
T: Component,
👎Deprecated since 0.13.0: Please use QueryState::get_unchecked_manual and select for the exact component based on the structure of the exact query as required.
pub unsafe fn get_component_unchecked_mut<T, 'w>(
&self,
world: UnsafeWorldCell<'w>,
entity: Entity,
last_run: Tick,
this_run: Tick
) -> Result<Mut<'w, T>, QueryComponentError>where
T: Component,
Returns a mutable reference to the component T
of the given entity.
In case of a nonexisting entity or mismatched component, a QueryComponentError
is returned instead.
Safety
This function makes it possible to violate Rust’s aliasing guarantees. You must make sure this call does not result in multiple mutable references to the same component.
sourcepub fn iter<'w, 's>(
&'s mut self,
world: &'w World
) -> QueryIter<'w, 's, <D as QueryData>::ReadOnly, F> ⓘ
pub fn iter<'w, 's>( &'s mut self, world: &'w World ) -> QueryIter<'w, 's, <D as QueryData>::ReadOnly, F> ⓘ
Returns an Iterator
over the query results for the given World
.
This can only be called for read-only queries, see Self::iter_mut
for write-queries.
sourcepub fn iter_manual<'w, 's>(
&'s self,
world: &'w World
) -> QueryIter<'w, 's, <D as QueryData>::ReadOnly, F> ⓘ
pub fn iter_manual<'w, 's>( &'s self, world: &'w World ) -> QueryIter<'w, 's, <D as QueryData>::ReadOnly, F> ⓘ
Returns an Iterator
over the query results for the given World
without updating the query’s archetypes.
Archetypes must be manually updated before by using Self::update_archetypes
.
This can only be called for read-only queries.
sourcepub fn iter_combinations<const K: usize, 'w, 's>(
&'s mut self,
world: &'w World
) -> QueryCombinationIter<'w, 's, <D as QueryData>::ReadOnly, F, K> ⓘ
pub fn iter_combinations<const K: usize, 'w, 's>( &'s mut self, world: &'w World ) -> QueryCombinationIter<'w, 's, <D as QueryData>::ReadOnly, F, K> ⓘ
Returns an Iterator
over all possible combinations of K
query results without repetition.
This can only be called for read-only queries.
A combination is an arrangement of a collection of items where order does not matter.
K
is the number of items that make up each subset, and the number of items returned by the iterator.
N
is the number of total entities output by query.
For example, given the list [1, 2, 3, 4], where K
is 2, the combinations without repeats are
[1, 2], [1, 3], [1, 4], [2, 3], [2, 4], [3, 4].
And in this case, N
would be defined as 4 since the size of the input list is 4.
For combinations of size K
of query taking N
inputs, you will get:
- if
K == N
: one combination of all query results - if
K < N
: all possibleK
-sized combinations of query results, without repetition - if
K > N
: empty set (noK
-sized combinations exist)
The iter_combinations
method does not guarantee order of iteration.
This can only be called for read-only queries, see Self::iter_combinations_mut
for
write-queries.
sourcepub fn iter_combinations_mut<const K: usize, 'w, 's>(
&'s mut self,
world: &'w mut World
) -> QueryCombinationIter<'w, 's, D, F, K> ⓘ
pub fn iter_combinations_mut<const K: usize, 'w, 's>( &'s mut self, world: &'w mut World ) -> QueryCombinationIter<'w, 's, D, F, K> ⓘ
Returns an Iterator
over all possible combinations of K
query results without repetition.
A combination is an arrangement of a collection of items where order does not matter.
K
is the number of items that make up each subset, and the number of items returned by the iterator.
N
is the number of total entities output by query.
For example, given the list [1, 2, 3, 4], where K
is 2, the combinations without repeats are
[1, 2], [1, 3], [1, 4], [2, 3], [2, 4], [3, 4].
And in this case, N
would be defined as 4 since the size of the input list is 4.
For combinations of size K
of query taking N
inputs, you will get:
- if
K == N
: one combination of all query results - if
K < N
: all possibleK
-sized combinations of query results, without repetition - if
K > N
: empty set (noK
-sized combinations exist)
The iter_combinations_mut
method does not guarantee order of iteration.
sourcepub fn iter_many<EntityList, 'w, 's>(
&'s mut self,
world: &'w World,
entities: EntityList
) -> QueryManyIter<'w, 's, <D as QueryData>::ReadOnly, F, <EntityList as IntoIterator>::IntoIter> ⓘ
pub fn iter_many<EntityList, 'w, 's>( &'s mut self, world: &'w World, entities: EntityList ) -> QueryManyIter<'w, 's, <D as QueryData>::ReadOnly, F, <EntityList as IntoIterator>::IntoIter> ⓘ
Returns an Iterator
over the read-only query items generated from an Entity
list.
Items are returned in the order of the list of entities. Entities that don’t match the query are skipped.
See also
iter_many_mut
to get mutable query items.
sourcepub fn iter_many_manual<EntityList, 'w, 's>(
&'s self,
world: &'w World,
entities: EntityList
) -> QueryManyIter<'w, 's, <D as QueryData>::ReadOnly, F, <EntityList as IntoIterator>::IntoIter> ⓘ
pub fn iter_many_manual<EntityList, 'w, 's>( &'s self, world: &'w World, entities: EntityList ) -> QueryManyIter<'w, 's, <D as QueryData>::ReadOnly, F, <EntityList as IntoIterator>::IntoIter> ⓘ
Returns an Iterator
over the read-only query items generated from an Entity
list.
Items are returned in the order of the list of entities. Entities that don’t match the query are skipped.
If world
archetypes changed since Self::update_archetypes
was last called,
this will skip entities contained in new archetypes.
This can only be called for read-only queries.
See also
iter_many
to update archetypes.iter_manual
to iterate over all query items.
sourcepub fn iter_many_mut<EntityList, 'w, 's>(
&'s mut self,
world: &'w mut World,
entities: EntityList
) -> QueryManyIter<'w, 's, D, F, <EntityList as IntoIterator>::IntoIter> ⓘ
pub fn iter_many_mut<EntityList, 'w, 's>( &'s mut self, world: &'w mut World, entities: EntityList ) -> QueryManyIter<'w, 's, D, F, <EntityList as IntoIterator>::IntoIter> ⓘ
Returns an iterator over the query items generated from an Entity
list.
Items are returned in the order of the list of entities. Entities that don’t match the query are skipped.
sourcepub unsafe fn iter_unchecked<'w, 's>(
&'s mut self,
world: UnsafeWorldCell<'w>
) -> QueryIter<'w, 's, D, F> ⓘ
pub unsafe fn iter_unchecked<'w, 's>( &'s mut self, world: UnsafeWorldCell<'w> ) -> QueryIter<'w, 's, D, F> ⓘ
sourcepub unsafe fn iter_combinations_unchecked<const K: usize, 'w, 's>(
&'s mut self,
world: UnsafeWorldCell<'w>
) -> QueryCombinationIter<'w, 's, D, F, K> ⓘ
pub unsafe fn iter_combinations_unchecked<const K: usize, 'w, 's>( &'s mut self, world: UnsafeWorldCell<'w> ) -> QueryCombinationIter<'w, 's, D, F, K> ⓘ
Returns an Iterator
over all possible combinations of K
query results for the
given World
without repetition.
This can only be called for read-only queries.
Safety
This does not check for mutable query correctness. To be safe, make sure mutable queries have unique access to the components they query.
sourcepub fn for_each<'w, FN>(&mut self, world: &'w World, func: FN)
👎Deprecated since 0.13.0: QueryState::for_each was not idiomatic Rust and has been moved to query.iter().for_each()
pub fn for_each<'w, FN>(&mut self, world: &'w World, func: FN)
Runs func
on each query result for the given World
. This is faster than the equivalent
iter()
method, but cannot be chained like a normal Iterator
.
This can only be called for read-only queries, see Self::for_each_mut
for write-queries.
Shorthand for query.iter(world).for_each(..)
.
sourcepub fn for_each_mut<'w, FN>(&mut self, world: &'w mut World, func: FN)
👎Deprecated since 0.13.0: QueryState::for_each_mut was not idiomatic Rust and has been moved to query.iter_mut().for_each()
pub fn for_each_mut<'w, FN>(&mut self, world: &'w mut World, func: FN)
sourcepub unsafe fn for_each_unchecked<'w, FN>(
&mut self,
world: UnsafeWorldCell<'w>,
func: FN
)
👎Deprecated since 0.13.0: QueryState::for_each_unchecked was not idiomatic Rust and has been moved to query.iter_unchecked_manual().for_each()
pub unsafe fn for_each_unchecked<'w, FN>( &mut self, world: UnsafeWorldCell<'w>, func: FN )
sourcepub fn par_iter<'w, 's>(
&'s mut self,
world: &'w World
) -> QueryParIter<'w, 's, <D as QueryData>::ReadOnly, F>
pub fn par_iter<'w, 's>( &'s mut self, world: &'w World ) -> QueryParIter<'w, 's, <D as QueryData>::ReadOnly, F>
Returns a parallel iterator over the query results for the given World
.
This can only be called for read-only queries, see par_iter_mut
for write-queries.
Note that you must use the for_each
method to iterate over the
results, see par_iter_mut
for an example.
sourcepub fn par_iter_mut<'w, 's>(
&'s mut self,
world: &'w mut World
) -> QueryParIter<'w, 's, D, F>
pub fn par_iter_mut<'w, 's>( &'s mut self, world: &'w mut World ) -> QueryParIter<'w, 's, D, F>
Returns a parallel iterator over the query results for the given World
.
This can only be called for mutable queries, see par_iter
for read-only-queries.
Examples
use bevy_ecs::prelude::*;
use bevy_ecs::query::QueryEntityError;
#[derive(Component, PartialEq, Debug)]
struct A(usize);
let mut world = World::new();
let mut query_state = world.query::<&mut A>();
query_state.par_iter_mut(&mut world).for_each(|mut a| {
a.0 += 5;
});
Panics
The ComputeTaskPool
is not initialized. If using this from a query that is being
initialized and run from the ECS scheduler, this should never panic.
sourcepub fn single<'w>(
&mut self,
world: &'w World
) -> <<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>
pub fn single<'w>( &mut self, world: &'w World ) -> <<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>
Returns a single immutable query result when there is exactly one entity matching the query.
This can only be called for read-only queries,
see single_mut
for write-queries.
Panics
Panics if the number of query results is not exactly one. Use
get_single
to return a Result
instead of panicking.
sourcepub fn get_single<'w>(
&mut self,
world: &'w World
) -> Result<<<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>, QuerySingleError>
pub fn get_single<'w>( &mut self, world: &'w World ) -> Result<<<D as QueryData>::ReadOnly as WorldQuery>::Item<'w>, QuerySingleError>
Returns a single immutable query result when there is exactly one entity matching the query.
This can only be called for read-only queries,
see get_single_mut
for write-queries.
If the number of query results is not exactly one, a QuerySingleError
is returned
instead.
sourcepub fn single_mut<'w>(
&mut self,
world: &'w mut World
) -> <D as WorldQuery>::Item<'w>
pub fn single_mut<'w>( &mut self, world: &'w mut World ) -> <D as WorldQuery>::Item<'w>
Returns a single mutable query result when there is exactly one entity matching the query.
Panics
Panics if the number of query results is not exactly one. Use
get_single_mut
to return a Result
instead of panicking.
sourcepub fn get_single_mut<'w>(
&mut self,
world: &'w mut World
) -> Result<<D as WorldQuery>::Item<'w>, QuerySingleError>
pub fn get_single_mut<'w>( &mut self, world: &'w mut World ) -> Result<<D as WorldQuery>::Item<'w>, QuerySingleError>
Returns a single mutable query result when there is exactly one entity matching the query.
If the number of query results is not exactly one, a QuerySingleError
is returned
instead.
sourcepub unsafe fn get_single_unchecked<'w>(
&mut self,
world: UnsafeWorldCell<'w>
) -> Result<<D as WorldQuery>::Item<'w>, QuerySingleError>
pub unsafe fn get_single_unchecked<'w>( &mut self, world: UnsafeWorldCell<'w> ) -> Result<<D as WorldQuery>::Item<'w>, QuerySingleError>
Returns a query result when there is exactly one entity matching the query.
If the number of query results is not exactly one, a QuerySingleError
is returned
instead.
Safety
This does not check for mutable query correctness. To be safe, make sure mutable queries have unique access to the components they query.
sourcepub unsafe fn get_single_unchecked_manual<'w>(
&self,
world: UnsafeWorldCell<'w>,
last_run: Tick,
this_run: Tick
) -> Result<<D as WorldQuery>::Item<'w>, QuerySingleError>
pub unsafe fn get_single_unchecked_manual<'w>( &self, world: UnsafeWorldCell<'w>, last_run: Tick, this_run: Tick ) -> Result<<D as WorldQuery>::Item<'w>, QuerySingleError>
Returns a query result when there is exactly one entity matching the query, where the last change and the current change tick are given.
If the number of query results is not exactly one, a QuerySingleError
is returned
instead.
Safety
This does not check for mutable query correctness. To be safe, make sure mutable queries have unique access to the components they query.
Trait Implementations§
source§impl<D, F> Debug for QueryState<D, F>where
D: QueryData,
F: QueryFilter,
impl<D, F> Debug for QueryState<D, F>where
D: QueryData,
F: QueryFilter,
source§impl<'a, D, F> ExclusiveSystemParam for &'a mut QueryState<D, F>where
D: QueryData + 'static,
F: QueryFilter + 'static,
impl<'a, D, F> ExclusiveSystemParam for &'a mut QueryState<D, F>where
D: QueryData + 'static,
F: QueryFilter + 'static,
§type State = QueryState<D, F>
type State = QueryState<D, F>
§type Item<'s> = &'s mut QueryState<D, F>
type Item<'s> = &'s mut QueryState<D, F>
SystemParam::Item
.source§fn init(
world: &mut World,
_system_meta: &mut SystemMeta
) -> <&'a mut QueryState<D, F> as ExclusiveSystemParam>::State
fn init( world: &mut World, _system_meta: &mut SystemMeta ) -> <&'a mut QueryState<D, F> as ExclusiveSystemParam>::State
State
.source§fn get_param<'s>(
state: &'s mut <&'a mut QueryState<D, F> as ExclusiveSystemParam>::State,
_system_meta: &SystemMeta
) -> <&'a mut QueryState<D, F> as ExclusiveSystemParam>::Item<'s>
fn get_param<'s>( state: &'s mut <&'a mut QueryState<D, F> as ExclusiveSystemParam>::State, _system_meta: &SystemMeta ) -> <&'a mut QueryState<D, F> as ExclusiveSystemParam>::Item<'s>
ExclusiveSystemParamFunction
.source§impl<D, F> From<QueryBuilder<'_, D, F>> for QueryState<D, F>where
D: QueryData,
F: QueryFilter,
impl<D, F> From<QueryBuilder<'_, D, F>> for QueryState<D, F>where
D: QueryData,
F: QueryFilter,
source§fn from(value: QueryBuilder<'_, D, F>) -> QueryState<D, F>
fn from(value: QueryBuilder<'_, D, F>) -> QueryState<D, F>
source§impl<D, F> FromWorld for QueryState<D, F>where
D: QueryData,
F: QueryFilter,
impl<D, F> FromWorld for QueryState<D, F>where
D: QueryData,
F: QueryFilter,
source§fn from_world(world: &mut World) -> QueryState<D, F>
fn from_world(world: &mut World) -> QueryState<D, F>
Self
using data from the given World
.Auto Trait Implementations§
impl<D, F> RefUnwindSafe for QueryState<D, F>
impl<D, F> Send for QueryState<D, F>
impl<D, F> Sync for QueryState<D, F>
impl<D, F> Unpin for QueryState<D, F>
impl<D, F> UnwindSafe for QueryState<D, F>
Blanket Implementations§
source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.