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