pub struct Chorus {
pub depth: f32,
pub rate: f32,
pub wet: f32,
pub voices: usize,
/* private fields */
}Fields§
§depth: f32§rate: f32§wet: f32§voices: usizeImplementations§
Source§impl Chorus
impl Chorus
pub fn new(voices: usize) -> Self
pub fn process_buffer(&mut self, input: &AudioBuffer) -> AudioBuffer
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