Skip to main content

CrashIntrospectProxyInterface

Trait CrashIntrospectProxyInterface 

Source
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§

Required Methods§

Source

fn find_driver_crash( &self, process_koid: u64, thread_koid: u64, ) -> Self::FindDriverCrashResponseFut

Implementors§