[][src]Struct dragon::ecs::component::ComponentStoreProto

pub struct ComponentStoreProto { /* fields omitted */ }

Methods

impl ComponentStoreProto[src]

pub fn new() -> ComponentStore[src]

pub fn register<C: 'static + Component>(&mut self)[src]

pub fn get<C: 'static + Component>(&self) -> Ref<HashMap<u32, C>>[src]

pub fn get_mut<C: 'static + Component>(&self) -> RefMut<HashMap<u32, C>>[src]

pub fn borrow(&self) -> &HashMap<TypeId, Box<dyn Any>>[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,