pub trait TupleRemove {
    type Out;

    fn remove(all_storages: &mut AllStorages, entity: EntityId) -> Self::Out;
}
Expand description

Trait used as bound for World::remove and AllStorages::remove.

Required Associated Types

Required Methods

Trait used as bound for World::remove and AllStorages::remove.

Implementations on Foreign Types

Implementors