pub trait Rectifier<F>where
F: Frame,{
type Output: Frame<NumChannels = F::NumChannels>;
// Required method
fn rectify(&mut self, frame: F) -> Self::Output;
}
Expand description
Types that may be used to rectify a signal of frames F
for a Peak
detector.
Required Associated Types§
Sourcetype Output: Frame<NumChannels = F::NumChannels>
type Output: Frame<NumChannels = F::NumChannels>
Frames that can be detected.