Expand description

Builder for getting your Manga ratings.

This endpoint requires authentication.

https://api.mangadex.org/swagger.html#/Rating/get-rating

Examples

use mangadex_api::types::{Password, Username};
use mangadex_api::v5::MangaDexClient;
use uuid::Uuid;

let client = MangaDexClient::default();

let _login_res = client
    .auth()
    .login()
    .username(Username::parse("myusername")?)
    .password(Password::parse("hunter2")?)
    .build()?
    .send()
    .await?;

// Official Test Manga ID.
let manga_id = Uuid::parse_str("f9c33607-9180-4ba6-b85c-e4b5faee7192")?;

let res = client
    .rating()
    .get_your_manga_ratings()
    .manga_id(&manga_id)
    .build()?
    .send()
    .await?;

println!("Response: {:?}", res);

Structs

Enums

Error type for GetYourMangaRatingsBuilder