[][src]Struct kudo::Query

pub struct Query<'world_borrow, PARAMS: EntityQueryParams<'world_borrow>>(_);

Query for entities with specific components.

Implementations

impl<'world_borrow, PARAMS: EntityQueryParams<'world_borrow>> Query<'world_borrow, PARAMS>[src]

pub fn iter(&mut self) -> <PARAMS::WorldBorrow as WorldBorrow<'_>>::Iter[src]

Trait Implementations

impl<'world_borrow, PARAMS: EntityQueryParams<'world_borrow>> SystemQuery<'world_borrow> for Query<'world_borrow, PARAMS>[src]

impl<'iter, 'world_borrow, A: EntityQueryItem<'world_borrow>> WorldBorrow<'iter> for Query<'world_borrow, (A,)>[src]

type Iter = Zip<(<A::WorldBorrow as WorldBorrow<'iter>>::Iter,)>

Auto Trait Implementations

impl<'world_borrow, PARAMS> RefUnwindSafe for Query<'world_borrow, PARAMS> where
    <PARAMS as EntityQueryParams<'world_borrow>>::WorldBorrow: RefUnwindSafe

impl<'world_borrow, PARAMS> Send for Query<'world_borrow, PARAMS> where
    <PARAMS as EntityQueryParams<'world_borrow>>::WorldBorrow: Send

impl<'world_borrow, PARAMS> Sync for Query<'world_borrow, PARAMS> where
    <PARAMS as EntityQueryParams<'world_borrow>>::WorldBorrow: Sync

impl<'world_borrow, PARAMS> Unpin for Query<'world_borrow, PARAMS> where
    <PARAMS as EntityQueryParams<'world_borrow>>::WorldBorrow: Unpin

impl<'world_borrow, PARAMS> UnwindSafe for Query<'world_borrow, PARAMS> where
    <PARAMS as EntityQueryParams<'world_borrow>>::WorldBorrow: UnwindSafe

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> From<T> 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.