pub trait ToAnyTag: ToAny {
    // Required method
    fn to_anytag(&self) -> AnyTag<'_>;

    // Provided method
    fn to_dyn_tag(&self, tag_type: TagType) -> Box<dyn AudioTag> { ... }
}

Required Methods§

source

fn to_anytag(&self) -> AnyTag<'_>

Provided Methods§

source

fn to_dyn_tag(&self, tag_type: TagType) -> Box<dyn AudioTag>

Convert the tag type, which can be lossy.

Implementors§