Struct bevy::prelude::QuerySet[]

pub struct QuerySet<T>(_);

Implementations

impl<'q0, Q0, F0> QuerySet<(Query<'q0, Q0, F0>,)> where
    Q0: WorldQuery,
    F0: WorldQuery,
    <F0 as WorldQuery>::Fetch: FilterFetch

pub fn q0(&self) -> &Query<'q0, Q0, F0>

pub fn q0_mut(&mut self) -> &mut Query<'q0, Q0, F0>

impl<'q0, 'q1, Q0, Q1, F0, F1> QuerySet<(Query<'q0, Q0, F0>, Query<'q1, Q1, F1>)> where
    Q0: WorldQuery,
    F0: WorldQuery,
    Q1: WorldQuery,
    F1: WorldQuery,
    <F0 as WorldQuery>::Fetch: FilterFetch,
    <F1 as WorldQuery>::Fetch: FilterFetch

pub fn q0(&self) -> &Query<'q0, Q0, F0>

pub fn q1(&self) -> &Query<'q1, Q1, F1>

pub fn q0_mut(&mut self) -> &mut Query<'q0, Q0, F0>

pub fn q1_mut(&mut self) -> &mut Query<'q1, Q1, F1>

impl<'q0, 'q1, 'q2, Q0, Q1, Q2, F0, F1, F2> QuerySet<(Query<'q0, Q0, F0>, Query<'q1, Q1, F1>, Query<'q2, Q2, F2>)> where
    Q0: WorldQuery,
    F0: WorldQuery,
    Q1: WorldQuery,
    F1: WorldQuery,
    Q2: WorldQuery,
    F2: WorldQuery,
    <F0 as WorldQuery>::Fetch: FilterFetch,
    <F1 as WorldQuery>::Fetch: FilterFetch,
    <F2 as WorldQuery>::Fetch: FilterFetch

pub fn q0(&self) -> &Query<'q0, Q0, F0>

pub fn q1(&self) -> &Query<'q1, Q1, F1>

pub fn q2(&self) -> &Query<'q2, Q2, F2>

pub fn q0_mut(&mut self) -> &mut Query<'q0, Q0, F0>

pub fn q1_mut(&mut self) -> &mut Query<'q1, Q1, F1>

pub fn q2_mut(&mut self) -> &mut Query<'q2, Q2, F2>

impl<'q0, 'q1, 'q2, 'q3, Q0, Q1, Q2, Q3, F0, F1, F2, F3> QuerySet<(Query<'q0, Q0, F0>, Query<'q1, Q1, F1>, Query<'q2, Q2, F2>, Query<'q3, Q3, F3>)> where
    Q0: WorldQuery,
    F0: WorldQuery,
    Q1: WorldQuery,
    F1: WorldQuery,
    Q2: WorldQuery,
    F2: WorldQuery,
    Q3: WorldQuery,
    F3: WorldQuery,
    <F0 as WorldQuery>::Fetch: FilterFetch,
    <F1 as WorldQuery>::Fetch: FilterFetch,
    <F2 as WorldQuery>::Fetch: FilterFetch,
    <F3 as WorldQuery>::Fetch: FilterFetch

pub fn q0(&self) -> &Query<'q0, Q0, F0>

pub fn q1(&self) -> &Query<'q1, Q1, F1>

pub fn q2(&self) -> &Query<'q2, Q2, F2>

pub fn q3(&self) -> &Query<'q3, Q3, F3>

pub fn q0_mut(&mut self) -> &mut Query<'q0, Q0, F0>

pub fn q1_mut(&mut self) -> &mut Query<'q1, Q1, F1>

pub fn q2_mut(&mut self) -> &mut Query<'q2, Q2, F2>

pub fn q3_mut(&mut self) -> &mut Query<'q3, Q3, F3>

Trait Implementations

impl<'q0, 'q1, 'q2, Q0, Q1, Q2, F0, F1, F2> SystemParam for QuerySet<(Query<'q0, Q0, F0>, Query<'q1, Q1, F1>, Query<'q2, Q2, F2>)> where
    Q0: 'static + WorldQuery,
    F0: 'static + WorldQuery,
    Q1: 'static + WorldQuery,
    F1: 'static + WorldQuery,
    Q2: 'static + WorldQuery,
    F2: 'static + WorldQuery,
    <F0 as WorldQuery>::Fetch: FilterFetch,
    <F1 as WorldQuery>::Fetch: FilterFetch,
    <F2 as WorldQuery>::Fetch: FilterFetch

type Fetch = QuerySetState<(QueryState<Q0, F0>, QueryState<Q1, F1>, QueryState<Q2, F2>)>

impl<'q0, Q0, F0> SystemParam for QuerySet<(Query<'q0, Q0, F0>,)> where
    Q0: 'static + WorldQuery,
    F0: 'static + WorldQuery,
    <F0 as WorldQuery>::Fetch: FilterFetch

impl<'q0, 'q1, Q0, Q1, F0, F1> SystemParam for QuerySet<(Query<'q0, Q0, F0>, Query<'q1, Q1, F1>)> where
    Q0: 'static + WorldQuery,
    F0: 'static + WorldQuery,
    Q1: 'static + WorldQuery,
    F1: 'static + WorldQuery,
    <F0 as WorldQuery>::Fetch: FilterFetch,
    <F1 as WorldQuery>::Fetch: FilterFetch

type Fetch = QuerySetState<(QueryState<Q0, F0>, QueryState<Q1, F1>)>

impl<'q0, 'q1, 'q2, 'q3, Q0, Q1, Q2, Q3, F0, F1, F2, F3> SystemParam for QuerySet<(Query<'q0, Q0, F0>, Query<'q1, Q1, F1>, Query<'q2, Q2, F2>, Query<'q3, Q3, F3>)> where
    Q0: 'static + WorldQuery,
    F0: 'static + WorldQuery,
    Q1: 'static + WorldQuery,
    F1: 'static + WorldQuery,
    Q2: 'static + WorldQuery,
    F2: 'static + WorldQuery,
    Q3: 'static + WorldQuery,
    F3: 'static + WorldQuery,
    <F0 as WorldQuery>::Fetch: FilterFetch,
    <F1 as WorldQuery>::Fetch: FilterFetch,
    <F2 as WorldQuery>::Fetch: FilterFetch,
    <F3 as WorldQuery>::Fetch: FilterFetch

type Fetch = QuerySetState<(QueryState<Q0, F0>, QueryState<Q1, F1>, QueryState<Q2, F2>, QueryState<Q3, F3>)>

Auto Trait Implementations

impl<T> RefUnwindSafe for QuerySet<T> where
    T: RefUnwindSafe

impl<T> Send for QuerySet<T> where
    T: Send

impl<T> Sync for QuerySet<T> where
    T: Sync

impl<T> Unpin for QuerySet<T> where
    T: Unpin

impl<T> UnwindSafe for QuerySet<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> Downcast<T> for T

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,