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