pub type EntityResult<T> = Result<T, EntityError>;
enum EntityResult<T> { Ok(T), Err(EntityError), }
Contains the success value
Contains the error value