pub fn read_from(file: &mut File) -> Result<TaggedFile>Expand description
Read a TaggedFile from a File
Errors
See:
Examples
use lofty::read_from;
use std::fs::File;
let mut file = File::open(path)?;
let parsed_file = read_from(&mut file)?;pub fn read_from(file: &mut File) -> Result<TaggedFile>Read a TaggedFile from a File
See:
use lofty::read_from;
use std::fs::File;
let mut file = File::open(path)?;
let parsed_file = read_from(&mut file)?;