pub struct FxInstance {
pub fx_type: FxType,
pub enabled: bool,
pub params: Vec<(String, f32)>,
}Expand description
An FX instance on a track.
Fields§
§fx_type: FxType§enabled: bool§params: Vec<(String, f32)>Placeholder parameter values (0.0..1.0).
Implementations§
Trait Implementations§
Source§impl Clone for FxInstance
impl Clone for FxInstance
Source§fn clone(&self) -> FxInstance
fn clone(&self) -> FxInstance
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 moreAuto Trait Implementations§
impl Freeze for FxInstance
impl RefUnwindSafe for FxInstance
impl Send for FxInstance
impl Sync for FxInstance
impl Unpin for FxInstance
impl UnsafeUnpin for FxInstance
impl UnwindSafe for FxInstance
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