pub trait LogSettingsProxyInterface: Send + Sync {
    type SetInterestResponseFut: Future<Output = Result<(), Error>> + Send;
    type SetComponentInterestResponseFut: Future<Output = Result<(), Error>> + Send;
    // Required methods
    fn set_interest(
        &self,
        selectors: &[LogInterestSelector],
    ) -> Self::SetInterestResponseFut;
    fn set_component_interest(
        &self,
        payload: &LogSettingsSetComponentInterestRequest,
    ) -> Self::SetComponentInterestResponseFut;
}