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