pub struct MIDIFileHeader {
pub format: MIDIFileFormat,
pub num_tracks: u16,
pub division: MIDIFileDivision,
}Expand description
The header chunk’s contents
Fields§
§format: MIDIFileFormatHow the file is organized
num_tracks: u16The number of tracks in the file
division: MIDIFileDivisionSpecifies the meaning of the delta times in events
Trait Implementations§
Source§impl Debug for MIDIFileHeader
impl Debug for MIDIFileHeader
Source§impl PartialEq for MIDIFileHeader
impl PartialEq for MIDIFileHeader
impl Eq for MIDIFileHeader
impl StructuralPartialEq for MIDIFileHeader
Auto Trait Implementations§
impl Freeze for MIDIFileHeader
impl RefUnwindSafe for MIDIFileHeader
impl Send for MIDIFileHeader
impl Sync for MIDIFileHeader
impl Unpin for MIDIFileHeader
impl UnwindSafe for MIDIFileHeader
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