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 W
[src]

Casts an immutable T reference to a trait object.

Important traits for &'a mut W
[src]

Casts a mutable T reference to a trait object.

Implementors