pub enum DspCmd {
Monitor(MonitorCmd),
Input(InputCmd),
Mixer(MixerCmd),
Output(OutputCmd),
Reverb(ReverbCmd),
Resource(ResourceCmd),
Reserved(Vec<u8>),
}
Expand description
The DSP command.
Variants§
Monitor(MonitorCmd)
Input(InputCmd)
Mixer(MixerCmd)
Output(OutputCmd)
Reverb(ReverbCmd)
Resource(ResourceCmd)
Reserved(Vec<u8>)
Implementations§
Trait Implementations§
impl StructuralPartialEq for DspCmd
Auto Trait Implementations§
impl Freeze for DspCmd
impl RefUnwindSafe for DspCmd
impl Send for DspCmd
impl Sync for DspCmd
impl Unpin for DspCmd
impl UnwindSafe for DspCmd
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