[][src]Struct tiny_ecs::MapRef

pub struct MapRef<'a, T> { /* fields omitted */ }

Immutable reference container for ComponentMap

Methods from Deref<Target = ComponentMap<T>>

pub fn get_part_ref(&self, id: usize) -> Result<&T, ECSError>[src]

Getting a reference to an entity part requires the entity ID

pub fn get(&self) -> &VecMap<T>[src]

Returns a borrow of the inner hashmap of components

Trait Implementations

impl<'a, T> Deref for MapRef<'a, T>[src]

type Target = ComponentMap<T>

The resulting type after dereferencing.

impl<'a, T: Debug> Debug for MapRef<'a, T>[src]

Auto Trait Implementations

impl<'a, T> !Send for MapRef<'a, T>

impl<'a, T> Unpin for MapRef<'a, T>

impl<'a, T> !Sync for MapRef<'a, T>

impl<'a, T> !UnwindSafe for MapRef<'a, T>

impl<'a, T> !RefUnwindSafe for MapRef<'a, T>

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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]