mangadex_api::v5::manga::id::list

Module get

Source
Expand description

Builder for getting the CustomLists where the manga is is.

NOTICE: This endpoint is not deployed yet on https://mangadex.org We’ll notice if it’s deployed

§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)
    .list()
    .get()
    .send()
    .await?;

println!("manga view: {:?}", manga_res);

Structs§