Struct bevy_ecs::query::QueryIter[][src]

pub struct QueryIter<'w, 's, Q: WorldQuery, F: WorldQuery> where
    F::Fetch: FilterFetch
{ /* fields omitted */ }

Trait Implementations

impl<'w, 's, Q: WorldQuery> ExactSizeIterator for QueryIter<'w, 's, Q, ()>[src]

impl<'w, 's, Q: WorldQuery, F: WorldQuery> Iterator for QueryIter<'w, 's, Q, F> where
    F::Fetch: FilterFetch
[src]

type Item = <Q::Fetch as Fetch<'w>>::Item

The type of the elements being iterated over.

Auto Trait Implementations

impl<'w, 's, Q, F> !RefUnwindSafe for QueryIter<'w, 's, Q, F>

impl<'w, 's, Q, F> !Send for QueryIter<'w, 's, Q, F>

impl<'w, 's, Q, F> !Sync for QueryIter<'w, 's, Q, F>

impl<'w, 's, Q, F> Unpin for QueryIter<'w, 's, Q, F> where
    <F as WorldQuery>::Fetch: Unpin,
    <Q as WorldQuery>::Fetch: Unpin

impl<'w, 's, Q, F> !UnwindSafe for QueryIter<'w, 's, Q, F>

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any
[src]

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[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>,