Trait amethyst::ecs::storage::AnyStorage[]

pub trait AnyStorage {
    fn drop(&mut self, entities: &[Entity]);
}

A dynamic storage.

Required Methods

Drop components of given entities.

Trait Implementations

impl<T> CastFrom<T> for AnyStorage + 'static where
    T: AnyStorage + 'static, 

Casts an immutable T reference to a trait object.

Casts a mutable T reference to a trait object.

Implementors