pub struct RunningRMSProcessorHandleImpl<ST: AtomicFloatRepresentable> { /* private fields */ }
Expand description
A shared “processor handle” to RunningRMSProcessor
Implementations§
source§impl<ST> RunningRMSProcessorHandleImpl<ST>
impl<ST> RunningRMSProcessorHandleImpl<ST>
sourcepub fn calculate_rms(&self, channel: usize) -> ST
pub fn calculate_rms(&self, channel: usize) -> ST
Calculate the RMS of the current window based on its running sum and size
Auto Trait Implementations§
impl<ST> RefUnwindSafe for RunningRMSProcessorHandleImpl<ST>where
<ST as AtomicFloatRepresentable>::AtomicType: RefUnwindSafe,
impl<ST> Send for RunningRMSProcessorHandleImpl<ST>
impl<ST> Sync for RunningRMSProcessorHandleImpl<ST>
impl<ST> Unpin for RunningRMSProcessorHandleImpl<ST>where
<ST as AtomicFloatRepresentable>::AtomicType: Unpin,
impl<ST> UnwindSafe for RunningRMSProcessorHandleImpl<ST>where
<ST as AtomicFloatRepresentable>::AtomicType: UnwindSafe + RefUnwindSafe,
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