Serial-ATA / lofty-rs

Audio metadata library
Apache License 2.0
184 stars 34 forks source link

ID3v2: Make FrameId less annoying #237

Closed Serial-ATA closed 1 year ago

Serial-ATA commented 1 year ago

This changes two things:

  1. FrameId now implements Into<Cow<'_, str>>

This makes it possible to use FrameIds in Frame::new. It's now much less annoying to create frames using constant IDs.

  1. Id3v2Tag::remove now takes a FrameId

This makes it more type safe and removes the unnecessary caseless string comparison.