pub struct TrackFile {
pub tracks: Vec<Track>,
pub name: String,
pub format: FileFormat,
}Expand description
One file described by a tracklist.
Fields§
§tracks: Vec<Track>List of tracks contained in the file.
name: StringThe filename.
format: FileFormatThe format of the file.
Trait Implementations§
impl Eq for TrackFile
impl StructuralPartialEq for TrackFile
Auto Trait Implementations§
impl Freeze for TrackFile
impl RefUnwindSafe for TrackFile
impl Send for TrackFile
impl Sync for TrackFile
impl Unpin for TrackFile
impl UnwindSafe for TrackFile
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