mangadex_api::v5::at_home::server::id

Module get

Source
Expand description

Builder for the MangaDex@Home node URL endpoint.

https://api.mangadex.org/docs/swagger.html#/AtHome/get-at-home-server-chapterId

§Examples

use uuid::Uuid;

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let chapter_id = Uuid::new_v4();
let node_url_res = client
    .at_home()
    .server()
    .id(chapter_id)
    .get()
    .force_port_443(true)
    .build()?
    .send()
    .await?;

println!("Node URL: {:?}", node_url_res);

Structs§