pub struct CommandDspOutputState {
pub reverb_send: Vec<f32>,
pub reverb_return: Vec<f32>,
pub master_monitor: Vec<bool>,
pub master_talkback: Vec<bool>,
pub master_listenback: Vec<bool>,
}
Expand description
State of input function.
Fields§
§reverb_send: Vec<f32>
The gain to send to reverb effect.
reverb_return: Vec<f32>
The volume to return from reverb effect.
master_monitor: Vec<bool>
Whether to monitor output in master.
master_talkback: Vec<bool>
Whether to take talkback in master.
master_listenback: Vec<bool>
Whether to take listenback in master.
Trait Implementations§
Source§impl Clone for CommandDspOutputState
impl Clone for CommandDspOutputState
Source§fn clone(&self) -> CommandDspOutputState
fn clone(&self) -> CommandDspOutputState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CommandDspOutputState
impl Debug for CommandDspOutputState
Source§impl Default for CommandDspOutputState
impl Default for CommandDspOutputState
Source§fn default() -> CommandDspOutputState
fn default() -> CommandDspOutputState
Returns the “default value” for a type. Read more
Source§impl PartialEq for CommandDspOutputState
impl PartialEq for CommandDspOutputState
impl StructuralPartialEq for CommandDspOutputState
Auto Trait Implementations§
impl Freeze for CommandDspOutputState
impl RefUnwindSafe for CommandDspOutputState
impl Send for CommandDspOutputState
impl Sync for CommandDspOutputState
impl Unpin for CommandDspOutputState
impl UnwindSafe for CommandDspOutputState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<O> MotuCommandDspParametersOperation<CommandDspOutputState> for Owhere
O: MotuCommandDspOutputSpecification,
impl<O> MotuCommandDspParametersOperation<CommandDspOutputState> for Owhere
O: MotuCommandDspOutputSpecification,
Source§fn build_commands(params: &CommandDspOutputState) -> Vec<DspCmd>
fn build_commands(params: &CommandDspOutputState) -> Vec<DspCmd>
Build DSP commands for parameters.
Source§fn parse_command(params: &mut CommandDspOutputState, command: &DspCmd) -> bool
fn parse_command(params: &mut CommandDspOutputState, command: &DspCmd) -> bool
Parse DSP command for parameters.