pub struct MonitorSrcParam {
pub src: SrcEntry,
pub gain_to_main: i32,
pub pan_to_main: i32,
pub gain_to_reverb: i32,
pub gain_to_aux0: i32,
pub gain_to_aux1: i32,
}Expand description
Parameters of source of monitor.
Fields§
§src: SrcEntryAssigned mixer source.
gain_to_main: i32Gain to main mixer, between -1000 and 0 (-72.00 and 0.00 dB).
pan_to_main: i32Left/Right balance to main mixer, between -50 and 50.
gain_to_reverb: i32Gain to reverb effect, between -1000 and 0 (-72.00 and 0.00 dB).
gain_to_aux0: i32Gain to 1st auxiliary mixer, between -1000 and 0 (-72.00 and 0.00 dB).
gain_to_aux1: i32Gain to 2nd auxiliary mixer, between -1000 and 0 (-72.00 and 0.00 dB).
Trait Implementations§
source§impl Clone for MonitorSrcParam
impl Clone for MonitorSrcParam
source§fn clone(&self) -> MonitorSrcParam
fn clone(&self) -> MonitorSrcParam
Returns a copy 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 MonitorSrcParam
impl Debug for MonitorSrcParam
source§impl Default for MonitorSrcParam
impl Default for MonitorSrcParam
source§fn default() -> MonitorSrcParam
fn default() -> MonitorSrcParam
Returns the “default value” for a type. Read more
source§impl PartialEq for MonitorSrcParam
impl PartialEq for MonitorSrcParam
source§fn eq(&self, other: &MonitorSrcParam) -> bool
fn eq(&self, other: &MonitorSrcParam) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for MonitorSrcParam
impl Eq for MonitorSrcParam
impl StructuralEq for MonitorSrcParam
impl StructuralPartialEq for MonitorSrcParam
Auto Trait Implementations§
impl RefUnwindSafe for MonitorSrcParam
impl Send for MonitorSrcParam
impl Sync for MonitorSrcParam
impl Unpin for MonitorSrcParam
impl UnwindSafe for MonitorSrcParam
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