pub type RatingsResponse = Result<RatingsList, Error>;
enum RatingsResponse { Ok(RatingsList), Err(Error), }
Contains the success value
Contains the error value