[][src]Struct tiny_ecs::MapRefMut

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

Mutbale 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_part_mut(&mut self, id: usize) -> Result<&mut T, ECSError>[src]

Getting a mutable reference to an entity part requires the entity ID

Example

#[derive(Debug, PartialEq)]
struct Test1 {}

let components = entities.borrow::<Test1>().unwrap();
let part = components.get_part_ref(entity_1).unwrap();
assert_eq!(part, &Test1 {});
// or
let part = components.get_part_ref(entity_1).unwrap();
assert_eq!(part, &Test1 {});

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

Returns a borrow of the inner hashmap of components

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

Returns a mutable borrow of the inner hashmap of components

Trait Implementations

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

type Target = ComponentMap<T>

The resulting type after dereferencing.

impl<'a, T> DerefMut for MapRefMut<'a, T>[src]

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

Auto Trait Implementations

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

impl<'a, T> !Sync for MapRefMut<'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]