pub enum Synth {
Stage2(Cbin<RawBody>),
Stage3(Cbin<SynthPreset>),
Stage4(Cbin<SynthPreset>),
StageClassic(Cbin<RawBody>),
}Expand description
A synth patch, on the models that bank them separately from programs. Only the Stage 4’s decodes.
Left unboxed for the reason Entity gives.
Variants§
Stage2(Cbin<RawBody>)
Stage3(Cbin<SynthPreset>)
Stage4(Cbin<SynthPreset>)
StageClassic(Cbin<RawBody>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Synth
impl RefUnwindSafe for Synth
impl Send for Synth
impl Sync for Synth
impl Unpin for Synth
impl UnsafeUnpin for Synth
impl UnwindSafe for Synth
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