pub type EntityString<T> = Entity<String, T>;
An Entity that has a String as key
pub enum EntityString<T> { Key(Key<String>), Data(Box<T>), None, }
Key of the entity
Created/Fetched data for the entity
For when you have no data to fill or null from database