use crate::*; #[derive(Debug)] pub struct ArrangerTrack { /// Name of track pub name: Arc>, /// Preferred width of track column pub width: usize, /// Identifying color of track pub color: ItemColor, /// The MIDI player for the track pub player: MIDIPlayer }