[][src]Struct bevy::prelude::QuerySet

pub struct QuerySet<T> where
    T: QueryTuple
{ /* fields omitted */ }

Implementations

impl<T> QuerySet<T> where
    T: QueryTuple
[src]

pub fn new(
    world: &World,
    component_access: &TypeAccess<ArchetypeComponent>
) -> QuerySet<T>
[src]

impl<'q0, Q0> QuerySet<(Query<'q0, Q0>,)> where
    Q0: Query
[src]

pub fn q0(&self) -> &Query<'q0, Q0>[src]

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

impl<'q0, 'q1, Q0, Q1> QuerySet<(Query<'q0, Q0>, Query<'q1, Q1>)> where
    Q0: Query,
    Q1: Query
[src]

pub fn q0(&self) -> &Query<'q0, Q0>[src]

pub fn q1(&self) -> &Query<'q1, Q1>[src]

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

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

impl<'q0, 'q1, 'q2, Q0, Q1, Q2> QuerySet<(Query<'q0, Q0>, Query<'q1, Q1>, Query<'q2, Q2>)> where
    Q0: Query,
    Q1: Query,
    Q2: Query
[src]

pub fn q0(&self) -> &Query<'q0, Q0>[src]

pub fn q1(&self) -> &Query<'q1, Q1>[src]

pub fn q2(&self) -> &Query<'q2, Q2>[src]

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

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

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

impl<'q0, 'q1, 'q2, 'q3, Q0, Q1, Q2, Q3> QuerySet<(Query<'q0, Q0>, Query<'q1, Q1>, Query<'q2, Q2>, Query<'q3, Q3>)> where
    Q0: Query,
    Q1: Query,
    Q2: Query,
    Q3: Query
[src]

pub fn q0(&self) -> &Query<'q0, Q0>[src]

pub fn q1(&self) -> &Query<'q1, Q1>[src]

pub fn q2(&self) -> &Query<'q2, Q2>[src]

pub fn q3(&self) -> &Query<'q3, Q3>[src]

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

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

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

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

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> DowncastSync for T where
    T: Send + Sync + Any

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> Resource for T where
    T: 'static + Send + Sync
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,