pub trait IDebugThreadCall64_Impl: Sized {
    // Required method
    fn ThreadCallHandler(
        &self,
        dwparam1: u64,
        dwparam2: u64,
        dwparam3: u64,
    ) -> Result<()>;
}

Required Methods§

fn ThreadCallHandler( &self, dwparam1: u64, dwparam2: u64, dwparam3: u64, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§