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