pub struct ReverbSettingsSnapshot {
pub enabled: bool,
pub dry_wet: f32,
}Expand description
Snapshot of active reverb settings for UI consumers.
Values are derived from the first matching reverb in the current effect
chain, with precedence handled in effects::get_reverb_settings.
Fields§
§enabled: bool§dry_wet: f32Trait Implementations§
Source§impl Clone for ReverbSettingsSnapshot
impl Clone for ReverbSettingsSnapshot
Source§fn clone(&self) -> ReverbSettingsSnapshot
fn clone(&self) -> ReverbSettingsSnapshot
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 ReverbSettingsSnapshot
impl Debug for ReverbSettingsSnapshot
impl Copy for ReverbSettingsSnapshot
Auto Trait Implementations§
impl Freeze for ReverbSettingsSnapshot
impl RefUnwindSafe for ReverbSettingsSnapshot
impl Send for ReverbSettingsSnapshot
impl Sync for ReverbSettingsSnapshot
impl Unpin for ReverbSettingsSnapshot
impl UnsafeUnpin for ReverbSettingsSnapshot
impl UnwindSafe for ReverbSettingsSnapshot
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