pub enum DspIndex {
Head = -1,
Fader = -2,
Tail = -3,
}
Expand description
Special types of nodes within a DSP chain.
By default there is one fader for a ChannelGroup
or Channel
and it is the head.
Variants§
Head = -1
-1: Head of the DSP chain (always index 0)
Fader = -2
-2: Index of the built-in fader DSP; initially 0
Tail = -3
-3: Tail of the DSP chain (number of DSPs -1)
Auto Trait Implementations§
impl Freeze for DspIndex
impl RefUnwindSafe for DspIndex
impl Send for DspIndex
impl Sync for DspIndex
impl Unpin for DspIndex
impl UnwindSafe for DspIndex
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