merriam_webster_model/entry/
headword_information.rs

1use super::pronunciations::Pronunciations;
2
3#[derive(Debug, Clone, Serialize, Deserialize)]
4pub struct HeadwordInformation {
5    #[serde(rename = "hw")]
6    pub value: String,
7    #[serde(rename = "prs")]
8    pub pronunciations: Option<Pronunciations>,
9}