pub struct Reverb {
pub room_size: f32,
pub damping: f32,
pub wet: f32,
pub dry: f32,
pub pre_delay_ms: f32,
pub width: f32,
/* private fields */
}Expand description
Freeverb-inspired stereo reverb.
Fields§
§room_size: f32§damping: f32§wet: f32§dry: f32§pre_delay_ms: f32§width: f32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Reverb
impl RefUnwindSafe for Reverb
impl Send for Reverb
impl Sync for Reverb
impl Unpin for Reverb
impl UnsafeUnpin for Reverb
impl UnwindSafe for Reverb
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