Expand description
Builder for the manga view endpoint.
https://api.mangadex.org/docs/swagger.html#/Manga/get-manga-id
§Examples
use uuid::Uuid;
use mangadex_api::v5::MangaDexClient;
let client = MangaDexClient::default();
let manga_id = Uuid::new_v4();
let manga_res = client
.manga()
.id(manga_id)
.get()
.send()
.await?;
println!("manga view: {:?}", manga_res);
Structs§
- Builder for
GetManga
.