Struct amethyst_utils::tag::TagFinder[][src]

pub struct TagFinder<'a, T> where
    T: Send + Sync + 'static, 
{ pub entities: Entities<'a>, pub tags: ReadStorage<'a, Tag<T>>, }

Utility lookup for tag components

Fields

Methods

impl<'a, T> TagFinder<'a, T> where
    T: Send + Sync + 'static, 
[src]

Trait Implementations

impl<'a, T> SystemData<'a> for TagFinder<'a, T> where
    T: Send + Sync + 'static,
    Entities<'a>: SystemData<'a>,
    ReadStorage<'a, Tag<T>>: SystemData<'a>, 
[src]

Sets up the system data for fetching it from the Resources.

Fetches the system data from Resources. Note that this is only specified for one concrete lifetime 'a, you need to implement the SystemData trait for every possible lifetime. Read more

Returns all read dependencies as fetched from Self::fetch. Read more

Returns all write dependencies as fetched from Self::fetch. Read more

Auto Trait Implementations

impl<'a, T> Send for TagFinder<'a, T>

impl<'a, T> Sync for TagFinder<'a, T>