pub type MangaResponse = Result<ApiData<ApiObject<MangaAttributes>>, Error>;
enum MangaResponse { Ok(ApiData<ApiObject<MangaAttributes>>), Err(Error), }
Contains the success value
Contains the error value