Expand description

Builder for the MangaDex@Home node URL endpoint.

https://api.mangadex.org/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()
    .chapter_id(&chapter_id)
    .force_port_443(true)
    .build()?
    .send()
    .await?;

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

Structs

Enums

Error type for GetAtHomeServerBuilder