use serde::Serialize; #[derive(Serialize)] pub struct ContactForm<'a> { pub path_prefix: &'a str, pub was_validated: bool, pub id: u16, pub name: &'a str, pub email: &'a str, pub telefon: &'a str, pub message: &'a str, pub captcha: &'a str, }