use hcaptcha_derive::Hcaptcha; #[derive(Debug, Hcaptcha)] pub struct ContactForm { name: String, #[allow(dead_code)] phone: String, email: String, #[allow(dead_code)] message: String, #[captcha] token: String, }