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