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;
}Required Associated Types§
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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".