pub type TaskSystemQuery<T> = Query<(Read<TaskProgress>, Write<T>), TaskEntityFilter<T>>;Expand description
The type of SystemQuery created by task_runner_query and used by run_tasks.
Aliased Type§
pub struct TaskSystemQuery<T> {
pub filter: EntityFilterTuple<And<(ComponentFilter<TaskProgress>, ComponentFilter<T>)>, And<(Passthrough, Passthrough)>, And<(Passthrough, Passthrough)>>,
/* private fields */
}Fields§
§filter: EntityFilterTuple<And<(ComponentFilter<TaskProgress>, ComponentFilter<T>)>, And<(Passthrough, Passthrough)>, And<(Passthrough, Passthrough)>>