pub struct EffectsChain {
pub reverb: Option<ReverbParams>,
pub delay: Option<DelayParams>,
pub distortion: Option<DistortionParams>,
pub filter: Option<FilterParams>,
}Fields§
§reverb: Option<ReverbParams>§delay: Option<DelayParams>§distortion: Option<DistortionParams>§filter: Option<FilterParams>Implementations§
Trait Implementations§
Source§impl Clone for EffectsChain
impl Clone for EffectsChain
Source§fn clone(&self) -> EffectsChain
fn clone(&self) -> EffectsChain
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectsChain
impl Debug for EffectsChain
Auto Trait Implementations§
impl Freeze for EffectsChain
impl RefUnwindSafe for EffectsChain
impl Send for EffectsChain
impl Sync for EffectsChain
impl Unpin for EffectsChain
impl UnsafeUnpin for EffectsChain
impl UnwindSafe for EffectsChain
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