pub trait Packed {
    fn packed(&self) -> Vec<u8>;
    fn unpacked(&self) -> Vec<u8>;
}
Expand description

Packed format of SysEx data used by KORG.

Required Methods

Implementations on Foreign Types

Returns this vector in a packed format.

Unpacks a previously packed byte vector.

Implementors