tsk-83: Add None value for MusicTypes and CoverArtTypes (#87)
All checks were successful
Release Tagging / release (push) Successful in 33s
Rust Build / Check (push) Successful in 34s
Rust Build / Test Suite (push) Successful in 32s
Rust Build / Rustfmt (push) Successful in 32s
Rust Build / Clippy (push) Successful in 32s
Rust Build / build (push) Successful in 32s

Closes #83

Reviewed-on: #87
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit was merged in pull request #87.
This commit is contained in:
2025-10-28 17:05:13 +00:00
committed by phoenix
parent 0a27b8ccb1
commit 432078e3c2
6 changed files with 42 additions and 20 deletions

View File

@@ -4,6 +4,7 @@ pub enum MusicTypes {
WavExtension,
FlacExtension,
MPThreeExtension,
None,
}
#[derive(Debug)]
@@ -11,4 +12,5 @@ pub enum CoverArtTypes {
PngExtension,
JpegExtension,
JpgExtension,
None,
}