Trait IDebugPlmClient2_Impl
pub trait IDebugPlmClient2_Impl: IUnknownImpl {
// Required methods
fn LaunchPlmPackageForDebugWide(
&self,
server: u64,
timeout: u32,
packagefullname: &PCWSTR,
appname: &PCWSTR,
arguments: &PCWSTR,
processid: *mut u32,
threadid: *mut u32,
) -> Result<()>;
fn LaunchPlmBgTaskForDebugWide(
&self,
server: u64,
timeout: u32,
packagefullname: &PCWSTR,
backgroundtaskid: &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<()>
fn LaunchPlmBgTaskForDebugWide( &self, server: u64, timeout: u32, packagefullname: &PCWSTR, backgroundtaskid: &PCWSTR, processid: *mut u32, threadid: *mut u32, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.