Struct amethyst_ui::UiFinder[][src]

pub struct UiFinder<'a> { /* fields omitted */ }

Utility SystemData for finding UI entities based on UiTransform id

Methods

impl<'a> UiFinder<'a>
[src]

Find the UiTransform entity with the given id

Trait Implementations

impl<'a> SystemData<'a> for UiFinder<'a> where
    Entities<'a>: SystemData<'a>,
    ReadStorage<'a, UiTransform>: 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> Send for UiFinder<'a>

impl<'a> Sync for UiFinder<'a>