mangadex_api::v5::author

Module get

Source
Expand description

Builder for the author list endpoint.

https://api.mangadex.org/docs/swagger.html#/Author/get-author

§Examples

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let author_res = client
    .author()
    .get()
    .name("carlo zen")
    .send()
    .await?;

println!("authors: {:?}", author_res);

Structs§