pub trait LogSettingsProxyInterface: Send + Sync {
type SetComponentInterestResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_component_interest(
&self,
payload: &LogSettingsSetComponentInterestRequest,
) -> Self::SetComponentInterestResponseFut;
}Required Associated Types§
Required Methods§
fn set_component_interest( &self, payload: &LogSettingsSetComponentInterestRequest, ) -> Self::SetComponentInterestResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".