Trait specs::storage::AnyStorage[][src]

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 where
    T: AnyStorage + 'static, 
[src]

Important traits for &'a mut R

Casts an immutable T reference to a trait object.

Important traits for &'a mut R

Casts a mutable T reference to a trait object.

Implementors