Expand description
Builder for getting client by its id.
https://api.mangadex.org/docs/swagger.html#/ApiClient/get-apiclient
§Examples
use mangadex_api::v5::MangaDexClient;
use uuid::Uuid;
let client = MangaDexClient::default();
let client_res = client
.client()
.id(Uuid::new_v4())
.get()
.send()
.await?;
println!("client: {:?}", client_res);
Structs§
- Builder for
GetClient
.