Expand description
Builder for the client list endpoint.
https://api.mangadex.org/docs/swagger.html#/ApiClient/get-list-apiclients https://api.mangadex.org/docs/redoc.html#tag/ApiClient/operation/get-list-apiclients
§Examples
use mangadex_api::v5::MangaDexClient;
let client = MangaDexClient::default();
let client_res = client
.client()
.get()
.send()
.await?;
println!("Clients : {:?}", client_res);
Structs§
- Builder for
ListClients
.