Expand description
Builder for the custom list view endpoint.
https://api.mangadex.org/docs/swagger.html#/CustomList/get-list-id
§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)
.get()
.send()
.await?;
println!("custom list: {:?}", res);
Structs§
- Builder for
GetCustomList
.