Expand description
Builder for the manga feed endpoint to get a list of new chapters for a manga.
https://api.mangadex.org/docs/swagger.html#/Manga/get-manga-id-feed
§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)
.feed()
.get()
.send()
.await?;
println!("Manga feed: {:?}", manga_res);
Structs§
- Builder for
GetMangaFeed
.