mangadex_api::v5::settings::template

Module get

Source
Expand description

Builder for getting the latest Settings template.

https://api.mangadex.org/docs/swagger.html#/Settings/get-settings-template

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

let client = MangaDexClient::default();

/*

    let _login_res = client
        .auth()
        .login()
        .post()
        .username(Username::parse("myusername")?)
        .password(Password::parse("hunter23")?)
        .send()
        .await?;

 */

let res = client
    .settings()
    .template()
    .get()
    .send()
    .await?;

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

Structsยง