pub enum TrackFxChainType {
NormalFxChain,
InputFxChain,
}Expand description
Represents the type of a track FX chain.
Variants§
NormalFxChain
The normal (or output) FX chain.
InputFxChain
The input (or recording) FX chain.
On the master track this corresponds to the monitoring FX chain.
Trait Implementations§
Source§impl Clone for TrackFxChainType
impl Clone for TrackFxChainType
Source§fn clone(&self) -> TrackFxChainType
fn clone(&self) -> TrackFxChainType
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 TrackFxChainType
impl Debug for TrackFxChainType
Source§impl Hash for TrackFxChainType
impl Hash for TrackFxChainType
Source§impl PartialEq for TrackFxChainType
impl PartialEq for TrackFxChainType
impl Copy for TrackFxChainType
impl Eq for TrackFxChainType
impl StructuralPartialEq for TrackFxChainType
Auto Trait Implementations§
impl Freeze for TrackFxChainType
impl RefUnwindSafe for TrackFxChainType
impl Send for TrackFxChainType
impl Sync for TrackFxChainType
impl Unpin for TrackFxChainType
impl UnwindSafe for TrackFxChainType
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