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