Trait specs::StorageBase [] [src]

pub trait StorageBase {
    fn del(&mut self, Entity);
}

Base trait for a component storage that is used as a trait object. Doesn't depend on the actual component type.

Required Methods

fn del(&mut self, Entity)

Deletes a particular Entity from the storage.

Implementors