Expand description
Builder for the chapter list endpoint.
https://api.mangadex.org/swagger.html#/Chapter/get-chapter
Examples
use mangadex_api::v5::MangaDexClient;
let client = MangaDexClient::default();
let chapter_res = client
.chapter()
.list()
.title("summoning")
.build()?
.send()
.await?;
println!("chapters: {:?}", chapter_res);
Structs
Builder for ListChapter
.
Enums
Error type for ListChapterBuilder