pub enum TrackKind {
Instrument,
Audio,
SendA,
SendB,
Master,
}Expand description
What kind of track this is — determines routing and capabilities.
Variants§
Instrument
Has a synth/plugin, receives MIDI.
Audio
Plays back audio clips.
SendA
Send bus A.
SendB
Send bus B.
Master
Master output bus.
Trait Implementations§
impl Copy for TrackKind
impl Eq for TrackKind
impl StructuralPartialEq for TrackKind
Auto Trait Implementations§
impl Freeze for TrackKind
impl RefUnwindSafe for TrackKind
impl Send for TrackKind
impl Sync for TrackKind
impl Unpin for TrackKind
impl UnsafeUnpin for TrackKind
impl UnwindSafe for TrackKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more