Expand description
Builder for the chapter view endpoint.
https://api.mangadex.org/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()
.get()
.chapter_id(&chapter_id)
.build()?
.send()
.await?;
println!("chapter: {:?}", chapter_res);
Structs
Builder for GetChapter
.
Enums
Error type for GetChapterBuilder