Expand description

Builder for the custom list manga feed endpoint to get a list of new chapters for a given list.

https://api.mangadex.org/swagger.html#/CustomList/get-list-id-feed

Examples

use uuid::Uuid;

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let list_id = Uuid::new_v4();
let res = client
    .custom_list()
    .manga_feed()
    .list_id(&list_id)
    .limit(1_u32)
    .build()?
    .send()
    .await?;

println!("Manga feed: {:?}", res);

Structs

Enums

Error type for CustomListMangaFeedBuilder