Trait IIsolatedProcessLauncher_Impl
pub trait IIsolatedProcessLauncher_Impl: IUnknownImpl {
// Required methods
fn LaunchProcess(
&self,
process: &PCWSTR,
arguments: &PCWSTR,
workingdirectory: &PCWSTR,
) -> Result<()>;
fn ShareDirectory(
&self,
hostpath: &PCWSTR,
containerpath: &PCWSTR,
readonly: BOOL,
) -> Result<()>;
fn GetContainerGuid(&self) -> Result<GUID>;
fn AllowSetForegroundAccess(&self, pid: u32) -> Result<()>;
fn IsContainerRunning(&self) -> Result<BOOL>;
}
Required Methods§
fn LaunchProcess( &self, process: &PCWSTR, arguments: &PCWSTR, workingdirectory: &PCWSTR, ) -> Result<()>
fn GetContainerGuid(&self) -> Result<GUID>
fn AllowSetForegroundAccess(&self, pid: u32) -> Result<()>
fn IsContainerRunning(&self) -> Result<BOOL>
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.