pub struct Mp3Bounds {
pub audio_offset: u64,
pub audio_length: u64,
}Expand description
Where the MP3 audio frames begin and end (excluding any ID3v2 prefix and ID3v1 trailer). Unlike FLAC there is no preserved structural metadata: the ID3v2 tag is regenerated from the DB, and the Xing/LAME info frame lives inside the first audio frame, carried by the backing-audio segment.
Fields§
§audio_offset: u64§audio_length: u64Trait Implementations§
impl Eq for Mp3Bounds
impl StructuralPartialEq for Mp3Bounds
Auto Trait Implementations§
impl Freeze for Mp3Bounds
impl RefUnwindSafe for Mp3Bounds
impl Send for Mp3Bounds
impl Sync for Mp3Bounds
impl Unpin for Mp3Bounds
impl UnsafeUnpin for Mp3Bounds
impl UnwindSafe for Mp3Bounds
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more