feat: atualiza status do progresso de implementação e resolve warnings de código não utilizado

This commit is contained in:
2026-02-28 15:11:19 -03:00
parent 7c9da9626a
commit de747368a3
11 changed files with 27 additions and 13 deletions
+3
View File
@@ -24,6 +24,7 @@ impl Track {
}
}
#[allow(dead_code)]
pub fn language(&self) -> &TrackLanguage {
match self {
Track::Audio(t) => &t.language,
@@ -31,6 +32,7 @@ impl Track {
}
}
#[allow(dead_code)]
pub fn set_offset(&mut self, offset: SyncOffset) {
match self {
Track::Audio(t) => t.offset = offset,
@@ -38,6 +40,7 @@ impl Track {
}
}
#[allow(dead_code)]
pub fn set_language(&mut self, language: TrackLanguage) {
match self {
Track::Audio(t) => t.language = language,