pub struct Chorus {
pub voices: usize,
pub rate_hz: f32,
pub depth_ms: f32,
pub spread: f32,
pub feedback: f32,
pub wet: f32,
pub dry: f32,
/* private fields */
}Expand description
Multi-voice chorus (up to 8 LFO-modulated delay lines).
Fields§
§voices: usize§rate_hz: f32§depth_ms: f32§spread: f32§feedback: f32§wet: f32§dry: f32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Chorus
impl RefUnwindSafe for Chorus
impl Send for Chorus
impl Sync for Chorus
impl Unpin for Chorus
impl UnsafeUnpin for Chorus
impl UnwindSafe for Chorus
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