mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-14 06:32:33 +00:00
Make AudioFile
a supertrait
This commit is contained in:
parent
bca87bcece
commit
59e034dee9
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ use std::io::{Read, Seek};
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
/// Provides various methods for interaction with a file
|
/// Provides various methods for interaction with a file
|
||||||
pub trait AudioFile {
|
pub trait AudioFile: Into<TaggedFile> {
|
||||||
/// The struct the file uses for audio properties
|
/// The struct the file uses for audio properties
|
||||||
///
|
///
|
||||||
/// Not all formats can use [`FileProperties`] since they may contain additional information
|
/// Not all formats can use [`FileProperties`] since they may contain additional information
|
||||||
|
|
Loading…
Reference in a new issue