pub trait Query<E: Entity>: QueryInternal<E> { }Expand description
Values accepted by user-facing query APIs such as
ContextEntitiesExt::query
and
ContextEntitiesExt::sample_entity.
Use with! to query for specific property values, or pass the entity type
directly to work with the entire population.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.