Type Definition specs::WriteStorage [] [src]

type WriteStorage<'a, T> = Storage<'a, T, FetchMut<'a, MaskedStorage<T>>>;

A storage with read and write access.

Additionally to what ReadStorage can do a storage with mutable access allows:

Retrieve components mutably

This works just like Storage::get, but returns a mutable reference:

let entity = world.create_entity()
    .with(Pos(2.0))
    .build();

assert_eq!(pos_storage.get_mut(entity), Some(&mut Pos(2.0)));
if let Some(pos) = pos_storage.get_mut(entity) {
    *pos = Pos(4.5);
}

assert_eq!(pos_storage.get(entity), Some(&Pos(4.5)));

Inserting and removing components

You can insert components using Storage::insert and remove them again with Storage::remove.

let entity = world.create_entity()
    .with(Pos(0.1))
    .build();

let res = pos_storage.insert(entity, Pos(4.0));
assert_eq!(res, InsertResult::Updated(Pos(0.1)));

There's also an Entry-API similar to the one provided by std::collections::HashMap.

Trait Implementations

impl<'a, T> SystemData<'a> for WriteStorage<'a, T> where
    T: Component
[src]

[src]

Creates a new resource bundle by fetching the required resources from the [Resources] struct. Read more

[src]

A list of [ResourceId]s the bundle needs read access to in order to build the target resource bundle. Read more

[src]

A list of [ResourceId]s the bundle needs write access to in order to build the target resource bundle. Read more