(&self)
| 200 | } |
| 201 | |
| 202 | fn get_string(&self) -> &String { |
| 203 | match self { |
| 204 | TTSCommandValue::String(s) => return s, |
| 205 | _ => panic!("Internal error: TTSCommandValue is not a string"), |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | fn get_pronounce(&self) -> &Pronounce { |
| 210 | match self { |