pub trait Contains {
    fn contains(&self, entity: EntityId) -> bool;
}
Expand description

Checks if an entity has some components.

Required Methods

Returns true if all storages contains entity.

Implementations on Foreign Types

Implementors