Trait compressor::detector::Detector [] [src]

pub trait Detector<F> where
    F: Frame, 
{ type Mode: Mode<F>; fn detector(&mut self) -> &mut EnvelopeDetector<F, Self::Mode>; }

Envelope Detector types that may be used by the Compressor.

Associated Types

The detection Mode used by the Detector.

Required Methods

Mutably borrow the MultiChannelEnvelopeDetector.

Implementors