1use serde::{Deserialize, Serialize}; 2 3#[derive(Debug, Clone, Deserialize, Serialize)] 4pub struct AncientTrait { 5 /// The name of the ancient trait 6 pub name: String, 7 /// The text value of the ancient trait 8 pub text: String, 9}