Trait dotrix_core::ecs::Accessor[][src]

pub trait Accessor: Send + Sync {
    type Item: Service;
    fn fetch(app: &mut Services) -> Self;
}

Associated Types

Loading content...

Required methods

fn fetch(app: &mut Services) -> Self[src]

Loading content...

Implementors

impl<T> Accessor for Const<T> where
    T: Service
[src]

type Item = T

impl<T> Accessor for Mut<T> where
    T: Service
[src]

type Item = T

Loading content...