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;
}