pub trait IDebugPlmClient_Impl: Sized {
    // Required method
    fn LaunchPlmPackageForDebugWide(
        &self,
        server: u64,
        timeout: u32,
        packagefullname: &PCWSTR,
        appname: &PCWSTR,
        arguments: &PCWSTR,
        processid: *mut u32,
        threadid: *mut u32,
    ) -> Result<()>;
}

Required Methods§

fn LaunchPlmPackageForDebugWide( &self, server: u64, timeout: u32, packagefullname: &PCWSTR, appname: &PCWSTR, arguments: &PCWSTR, processid: *mut u32, threadid: *mut u32, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§