usestd::any::TypeId;usecrate::entity::Entity;/// Not found error.
#[derive(Debug, PartialEq, Eq)]pubenumNotFound{/// Entity could not be found
Entity(Entity),/// Component could not be found
Component(TypeId),/// EntitySystem could not be found
EntitySystem(u32),/// Unkown error
Unkown(String)}