pub trait CoverageDataProviderProxyInterface: Send + Sync {
type WatchCoverageDataResponseFut: Future<Output = Result<Vec<CoverageData>, Error>> + Send;
// Required methods
fn set_options(&self, options: &Options) -> Result<(), Error>;
fn watch_coverage_data(&self) -> Self::WatchCoverageDataResponseFut;
}