Trait sample::peak::Rectifier[][src]

pub trait Rectifier<F> where
    F: Frame
{ type Output: Frame<NumChannels = F::NumChannels>; fn rectify(&mut self, frame: F) -> Self::Output; }

Types that may be used to rectify a signal of frames F for a Peak detector.

Associated Types

Frames that can be detected.

Required Methods

Rectify the given frame.

Implementors