Expand description

Builder for the ping endpoint.

https://api.mangadex.org/swagger.html#/Infrastructure/get_ping

Examples

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let res = client
    .infrastructure()
    .ping()
    .build()?
    .send()
    .await?;

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

Structs

Ping the server.

Builder for Ping.

Enums

Error type for PingBuilder