mangadex_api::v5::custom_list::id::feed

Module get

Source
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()
    .id(list_id)
    .feed()
    .get()
    .limit(1_u32)
    .send()
    .await?;

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

Structs§