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: SrcEntry
Assigned mixer source.
gain_to_main: i32
Gain to main mixer, between -1000 and 0 (-72.00 and 0.00 dB).
pan_to_main: i32
Left/Right balance to main mixer, between -50 and 50.
gain_to_reverb: i32
Gain to reverb effect, between -1000 and 0 (-72.00 and 0.00 dB).
gain_to_aux0: i32
Gain to 1st auxiliary mixer, between -1000 and 0 (-72.00 and 0.00 dB).
gain_to_aux1: i32
Gain 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 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 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
impl Copy for MonitorSrcParam
impl Eq for MonitorSrcParam
impl StructuralPartialEq for MonitorSrcParam
Auto Trait Implementations§
impl Freeze for MonitorSrcParam
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