Expand description

Builder for the update manga reading status endpoint.

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

Examples

use uuid::Uuid;

use mangadex_api::types::ReadingStatus;
use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let manga_id = Uuid::new_v4();
let res = client
    .manga()
    .update_reading_status()
    .manga_id(&manga_id)
    .status(Some(ReadingStatus::Reading))
    .build()?
    .send()
    .await?;

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

Structs

Enums

Error type for UpdateMangaReadingStatusBuilder