()
| 12 | #[derive(Debug, Deserialize, Serialize)] |
| 13 | pub(crate) struct TextConfig { |
| 14 | speed: f32, |
| 15 | opacity: f32, |
| 16 | is_bold: bool, |
| 17 | show_shadow: bool, |
| 18 | // 老 user.toml 缺该字段也能解析 |
| 19 | #[serde(default = "default_font")] |
| 20 | font: String, |
| 21 | } |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected