Expand description

Builder for the author view endpoint.

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

Examples

use uuid::Uuid;

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let author_id = Uuid::new_v4();
let res = client
    .author()
    .get()
    .author_id(&author_id)
    .build()?
    .send()
    .await?;

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

Structs

Enums

Error type for GetAuthorBuilder