logo
pub trait WorldQueryGats<'world> {
    type Fetch: Fetch<'world>
    where
        <Self::Fetch as Fetch<'world>>::State == Self::_State
; type _State: FetchState; }
Expand description

A helper trait for WorldQuery that works around Rust’s lack of Generic Associated Types

Required Associated Types

Implementations on Foreign Types

Implementors