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