Trait amethyst::ecs::storage::GenericReadStorage [−]
pub trait GenericReadStorage {
type Component: Component;
fn get(&self, entity: Entity) -> Option<&Self::Component>;
fn _private() -> Seal;
}Provides generic read access to both ReadStorage and WriteStorage
Associated Types
Required Methods
fn get(&self, entity: Entity) -> Option<&Self::Component>
Get immutable access to an Entitys component
fn _private() -> Seal
Private function to seal the trait
Implementors
impl<'a, T> GenericReadStorage for Storage<'a, T, Fetch<'a, MaskedStorage<T>>> where
T: Component, type Component = T;impl<'a, T> GenericReadStorage for Storage<'a, T, FetchMut<'a, MaskedStorage<T>>> where
T: Component, type Component = T;impl<'a, 'b, T> GenericReadStorage for &'b Storage<'a, T, Fetch<'a, MaskedStorage<T>>> where
'a: 'b,
T: Component, type Component = T;impl<'a, 'b, T> GenericReadStorage for &'b Storage<'a, T, FetchMut<'a, MaskedStorage<T>>> where
'a: 'b,
T: Component, type Component = T;