windows::Win32::System::ClrHosting

Trait ICLRTaskManager_Impl

pub trait ICLRTaskManager_Impl: IUnknownImpl {
    // Required methods
    fn CreateTask(&self) -> Result<ICLRTask>;
    fn GetCurrentTask(&self) -> Result<ICLRTask>;
    fn SetUILocale(&self, lcid: u32) -> Result<()>;
    fn SetLocale(&self, lcid: u32) -> Result<()>;
    fn GetCurrentTaskType(&self) -> Result<ETaskType>;
}

Required Methods§

fn CreateTask(&self) -> Result<ICLRTask>

fn GetCurrentTask(&self) -> Result<ICLRTask>

fn SetUILocale(&self, lcid: u32) -> Result<()>

fn SetLocale(&self, lcid: u32) -> Result<()>

fn GetCurrentTaskType(&self) -> Result<ETaskType>

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.

Implementors§