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