Module mangadex_api::v5::account::resend_activation_code
source · [−]Expand description
Builder for resending the account activation code.
https://api.mangadex.org/swagger.html#/Account/post-account-activate-resend
Examples
use mangadex_api::v5::MangaDexClient;
let client = MangaDexClient::default();
let account_resend_res = client
.account()
.resend_activation_code()
.email("test@example.com")
.build()?
.send()
.await?;
println!("account resend activation code: {:?}", account_resend_res);
Structs
Resend the account activation code.
Builder for ResendActivationCode
.
Enums
Error type for ResendActivationCodeBuilder