Expand description

Builder for initiating the account recovery process.

https://api.mangadex.org/swagger.html#/Account/post-account-recover

Examples

use mangadex_api::v5::MangaDexClient;

let client = MangaDexClient::default();

let account_recover_res = client
    .account()
    .recover()
    .email("test@example.com")
    .build()?
    .send()
    .await?;

println!("account recovery: {:?}", account_recover_res);

Structs

Recover an account.

Enums

Error type for RecoverAccountBuilder