pub enum SrcEntry {
Unused,
Analog(usize),
Spdif(usize),
Adat(usize),
StreamA(usize),
StreamB(usize),
Mixer(usize),
}
Expand description
Entry of signal source.
Variants§
Unused
For unused.
Analog(usize)
For analog 0..11.
Spdif(usize)
For S/PDIF 0..1
Adat(usize)
For ADAT 0..7.
StreamA(usize)
For stream A 0..11, 14,15.
StreamB(usize)
For stream B 0..8.
Mixer(usize)
For mixer output (main/aux0/aux1/reverb)
Trait Implementations§
impl Copy for SrcEntry
impl Eq for SrcEntry
impl StructuralPartialEq for SrcEntry
Auto Trait Implementations§
impl Freeze for SrcEntry
impl RefUnwindSafe for SrcEntry
impl Send for SrcEntry
impl Sync for SrcEntry
impl Unpin for SrcEntry
impl UnwindSafe for SrcEntry
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