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

A dynamic storage.

Required Methods

Drop components of given entities.

Trait Implementations

Casts an immutable T reference to a trait object.

Casts a mutable T reference to a trait object.

Implementors