mangadex_api::v5::chapter

Module get

Source
Expand description

Builder for the chapter list endpoint.

https://api.mangadex.org/docs/redoc.html#tag/Chapter

§Examples

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let chapter_res = client
    .chapter()
    .get()
    .title("summoning")
    .send()
    .await?;

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

Structs§