Type Alias TaskQuery

Source
pub type TaskQuery<T> = Query<(Read<TaskProgress>, Write<T>), TaskEntityFilter<T>>;
Expand description

The type of Query created by task_runner_query and used by run_tasks.

Aliased Type§

pub struct TaskQuery<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)>>