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§

Implementors§