pub struct RenderLevels {
pub active_render_limit: f32,
pub poor_excitation_render_limit: f32,
pub poor_excitation_render_limit_ds8: f32,
pub render_power_gain_db: f32,
}Expand description
Render signal level thresholds.
Fields§
§active_render_limit: f32Power threshold above which the render signal is considered active (default: 100.0).
poor_excitation_render_limit: f32Power threshold below which render excitation is considered poor (default: 150.0).
poor_excitation_render_limit_ds8: f32Poor excitation threshold for 8x down-sampled signals (default: 20.0).
render_power_gain_db: f32Gain in dB applied to the render power estimate (default: 0.0).
Trait Implementations§
Source§impl Clone for RenderLevels
impl Clone for RenderLevels
Source§fn clone(&self) -> RenderLevels
fn clone(&self) -> RenderLevels
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 RenderLevels
impl Debug for RenderLevels
Auto Trait Implementations§
impl Freeze for RenderLevels
impl RefUnwindSafe for RenderLevels
impl Send for RenderLevels
impl Sync for RenderLevels
impl Unpin for RenderLevels
impl UnwindSafe for RenderLevels
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