mangadex_api::v5::cover::cover_id

Module put

Source
Expand description

Builder for the edit cover endpoint.

https://api.mangadex.org/docs/swagger.html#/Cover/edit-cover

§Examples

use uuid::Uuid;

use mangadex_api::v5::MangaDexClient;
// use mangadex_api_types::{Password, Username};

let client = MangaDexClient::default();

/*
    let _login_res = client
        .auth()
        .login()
        .username(Username::parse("myusername")?)
        .password(Password::parse("hunter23")?)
        .send()
        .await?;
*/
let cover_id = Uuid::new_v4();
let res = client
    .cover()
    .cover_id(cover_id)
    .put()
    .volume(Some("1".to_string()))
    .version(2_u32)
    .send()
    .await?;

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

Structs§