pub trait ResourceQuery {
    type Item<'r>;
    type State<'s>: QueryState<'s>;

    fn query<'r, 's>(
        resources: &'r Resources,
        state: Self::State<'s>
    ) -> Option<Self::Item<'r>>; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors