pub trait FLACTag: EnvelopedTag {
const FLAC_COMMENT: &'static str;
// Provided methods
fn parse_flac(input: &[u8]) -> Result<Self, Error> { ... }
fn write_flac(&self, writer: &mut impl Write) -> Result<usize, Error> { ... }
}
Required Associated Constants§
sourceconst FLAC_COMMENT: &'static str
const FLAC_COMMENT: &'static str
Name of the VORBIS_COMMENT
that this data is stored in.
Provided Methods§
fn parse_flac(input: &[u8]) -> Result<Self, Error>
fn write_flac(&self, writer: &mut impl Write) -> Result<usize, Error>
Object Safety§
This trait is not object safe.