pub trait EffectsControllerProxyInterface: Send + Sync {
    type UpdateEffectResponseFut: Future<Output = Result<EffectsControllerUpdateEffectResult, Error>> + Send;
    // Required method
    fn update_effect(
        &self,
        effect_name: &str,
        config: &str,
    ) -> Self::UpdateEffectResponseFut;
}