pub trait AttachToMixer: AttachToMixerImpl {
    fn detach(&mut self);

    fn attach<T: HasMixer>(&mut self, mixer: &mut T) -> Result<(), ()> { ... }
}

Required Methods§

Provided Methods§

Implementors§