music-metadata 0.1.2

A parser for id3v2.3, id3v2.4 and id3v1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[allow(non_camel_case_types)]
#[derive(Debug)]
pub enum Encoding {
    ISO_8859_1,
    UTF16_LE,
    UTF16_WITH_BOM,
    UTF16_BE,
    UTF8,
}

pub trait Tape {
    // 有些frame不止出现一次
    fn identifier(&self) -> String;
    fn message(&self) -> String;
    fn raw(&self) -> Vec<u8>;
}