1 2 3 4 5 6 7 8 9 10 11 12
use serde::Deserialize; #[derive(Debug, Clone, Deserialize)] pub struct Profile { pub pk: u64, pub username: String, pub full_name: String, #[serde(default)] pub biography: String, pub is_private: bool, pub is_verified: bool, }