Expand description

Builder for the manga reading status endpoint.

https://api.mangadex.org/swagger.html#/Manga/get-manga-id-status

Examples

use uuid::Uuid;

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let manga_id = Uuid::new_v4();
let res = client
    .manga()
    .reading_status()
    .manga_id(&manga_id)
    .build()?
    .send()
    .await?;

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

Structs

Enums

Error type for MangaReadingStatusBuilder