pub trait EchoControlFactory {
type Controller: EchoControl;
// Required method
fn create(
&self,
sample_rate_hz: i32,
num_render_channels: usize,
num_capture_channels: usize,
) -> Self::Controller;
}Expand description
Trait for factories that create echo controllers.