pub struct Flanger {
pub rate_hz: f32,
pub depth_ms: f32,
pub feedback: f32,
pub invert: bool,
pub wet: f32,
pub dry: f32,
/* private fields */
}Expand description
Short-delay flanger (0–15 ms) with LFO and feedback.
Fields§
§rate_hz: f32§depth_ms: f32§feedback: f32§invert: bool§wet: f32§dry: f32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Flanger
impl RefUnwindSafe for Flanger
impl Send for Flanger
impl Sync for Flanger
impl Unpin for Flanger
impl UnsafeUnpin for Flanger
impl UnwindSafe for Flanger
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