pub trait AudioTagWrite {
// Required methods
fn write_to(&mut self, file: &mut File) -> Result<()>;
fn write_to_path(&mut self, path: &str) -> Result<()>;
}pub trait AudioTagWrite {
// Required methods
fn write_to(&mut self, file: &mut File) -> Result<()>;
fn write_to_path(&mut self, path: &str) -> Result<()>;
}