Trait maplibre::tcs::resources::ResourceQuery
source · pub trait ResourceQuery {
type Item<'r>;
type State<'s>: QueryState<'s>;
// Required method
fn query<'r, 's>(
resources: &'r Resources,
state: Self::State<'s>
) -> Option<Self::Item<'r>>;
}
Required Associated Types§
type Item<'r>
type State<'s>: QueryState<'s>
Required Methods§
fn query<'r, 's>( resources: &'r Resources, state: Self::State<'s> ) -> Option<Self::Item<'r>>
Object Safety§
This trait is not object safe.