pub struct FfLatterInputState {
pub stereo_links: Vec<bool>,
pub invert_phases: Vec<bool>,
pub line_gains: Vec<i16>,
pub line_levels: Vec<LatterInNominalLevel>,
pub mic_powers: Vec<bool>,
pub mic_insts: Vec<bool>,
}Expand description
State of inputs.
Fields
stereo_links: Vec<bool>Whether to link each pair of left and right ports.
invert_phases: Vec<bool>Whether to inverse the phase of analog, spdif, and adat inputs.
line_gains: Vec<i16>The gain of analog line input. The value is between 0 and 120 to represent 0.00 dB and 12.00 dB.
line_levels: Vec<LatterInNominalLevel>The nominal level of analog line input.
mic_powers: Vec<bool>Whether to enable powering for mic input.
mic_insts: Vec<bool>Whether to use mic input for instrument.
Trait Implementations
sourceimpl Clone for FfLatterInputState
impl Clone for FfLatterInputState
sourcefn clone(&self) -> FfLatterInputState
fn clone(&self) -> FfLatterInputState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for FfLatterInputState
impl Debug for FfLatterInputState
sourceimpl Default for FfLatterInputState
impl Default for FfLatterInputState
sourcefn default() -> FfLatterInputState
fn default() -> FfLatterInputState
Returns the “default value” for a type. Read more
sourceimpl PartialEq<FfLatterInputState> for FfLatterInputState
impl PartialEq<FfLatterInputState> for FfLatterInputState
sourcefn eq(&self, other: &FfLatterInputState) -> bool
fn eq(&self, other: &FfLatterInputState) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FfLatterInputState) -> bool
fn ne(&self, other: &FfLatterInputState) -> bool
This method tests for !=.
impl Eq for FfLatterInputState
impl StructuralEq for FfLatterInputState
impl StructuralPartialEq for FfLatterInputState
Auto Trait Implementations
impl RefUnwindSafe for FfLatterInputState
impl Send for FfLatterInputState
impl Sync for FfLatterInputState
impl Unpin for FfLatterInputState
impl UnwindSafe for FfLatterInputState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more