pub trait Buffer {
type Unit: Unit;
// Required method
fn buffer(&self) -> &[Self::Unit];
}Expand description
Generic data representation for MIDI message wrapper types.
For more info see the buffer module docs.
pub trait Buffer {
type Unit: Unit;
// Required method
fn buffer(&self) -> &[Self::Unit];
}Generic data representation for MIDI message wrapper types.
For more info see the buffer module docs.