trustcaptcha 3.0.0

TrustCaptcha – Privacy-first CAPTCHA solution for Rust. GDPR-compliant, bot protection made in Europe.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};
use uuid::Uuid;

#[derive(Serialize, Deserialize, Debug)]
pub struct VerificationToken {
    #[serde(rename = "verificationId")]
    pub verification_id: Uuid,

    #[serde(rename = "clientFailover", default)]
    pub client_failover: bool,
}