| 16 | pub(crate) struct VoiceLength { |
| 17 | voice_length: HashMap<String, HashMap<String, Duration>>, |
| 18 | } |
| 19 | |
| 20 | impl VoiceLength { |
| 21 | pub(crate) fn find(&self, name: &str) -> Option<&HashMap<String, Duration>> { |
| 22 | self.voice_length.get(name) |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected