mangadex_api::v5::chapter::id

Module get

Source
Expand description

Builder for the chapter view endpoint.

https://api.mangadex.org/docs/swagger.html#/Chapter/get-chapter-id

§Examples

use uuid::Uuid;

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let chapter_id = Uuid::new_v4();
let chapter_res = client
    .chapter()
    .id(chapter_id)
    .get()
    .send()
    .await?;

println!("chapter: {:?}", chapter_res);

Structs§