pub trait MidiBytesProvider {
// Required method
fn midi_bytes(&self) -> Vec<u8> ⓘ;
}
Expand description
Trait implemented for types which can provide midi file bytes. (Composition
, Smf
..)
Required Methods§
Sourcefn midi_bytes(&self) -> Vec<u8> ⓘ
fn midi_bytes(&self) -> Vec<u8> ⓘ
Return the midi file bytes for this type.