pub struct ReverbSettings {
pub enabled: bool,
pub dry_wet: f32,
pub reset_pending: bool,
}Expand description
Reverb configuration shared across threads.
Fields§
§enabled: bool§dry_wet: f32§reset_pending: boolImplementations§
Trait Implementations§
Source§impl Clone for ReverbSettings
impl Clone for ReverbSettings
Source§fn clone(&self) -> ReverbSettings
fn clone(&self) -> ReverbSettings
Returns a duplicate of the value. Read more
1.0.0 · 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 ReverbSettings
impl Debug for ReverbSettings
impl Copy for ReverbSettings
Auto Trait Implementations§
impl Freeze for ReverbSettings
impl RefUnwindSafe for ReverbSettings
impl Send for ReverbSettings
impl Sync for ReverbSettings
impl Unpin for ReverbSettings
impl UnwindSafe for ReverbSettings
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