Trait lofty::AudioTagWrite[][src]

pub trait AudioTagWrite {
    fn write_to(&self, file: &mut File) -> Result<()>;

    fn write_to_path(&self, path: &str) -> Result<()> { ... }
}
Expand description

Functions for writing to a file

Required methods

fn write_to(&self, file: &mut File) -> Result<()>[src]

Write tag to a File

Errors

Will return Err if unable to write to the File

Provided methods

fn write_to_path(&self, path: &str) -> Result<()>[src]

Write tag to a path

Errors

Will return Err if path doesn’t exist

Implementors