pub trait MIDIBytes {
    fn as_bytes(&self) -> Vec<u8>;
    fn from_bytes(
        bytes: &mut Vec<u8>,
        default_byte: u8
    ) -> Result<Self, ApresError>
    where
        Self: Sized
; }

Required Methods

Implementors