Trait AudioTagWrite
lofty
pub trait AudioTagWrite { fn write_to(&self, file: &mut File) -> Result<()>; fn write_to_path(&self, path: &str) -> Result<()> { ... } }
Functions for writing to a file
fn write_to(&self, file: &mut File) -> Result<()>
Write tag to a File
File
Will return Err if unable to write to the File
Err
fn write_to_path(&self, path: &str) -> Result<()>
Write tag to a path
Will return Err if path doesn’t exist
path