pub struct Input {
pub gate: Option<Gate>,
pub meter: Option<u16>,
pub peq: &'static [u16],
pub routing: &'static [Gate],
}
Expand description
Defines an input channel and its features
Fields§
§gate: Option<Gate>
Mute and Gain
meter: Option<u16>
Volume Meter
peq: &'static [u16]
Parametric Equalizers
routing: &'static [Gate]
Routing matrix, one entry per output channel connected to this input
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Input
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnwindSafe for Input
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