windows::Win32::System::ClrHosting

Trait IHostTask_Impl

pub trait IHostTask_Impl: IUnknownImpl {
    // Required methods
    fn Start(&self) -> Result<()>;
    fn Alert(&self) -> Result<()>;
    fn Join(&self, dwmilliseconds: u32, option: u32) -> Result<()>;
    fn SetPriority(&self, newpriority: i32) -> Result<()>;
    fn GetPriority(&self) -> Result<i32>;
    fn SetCLRTask(&self, pclrtask: Ref<'_, ICLRTask>) -> Result<()>;
}

Required Methods§

fn Start(&self) -> Result<()>

fn Alert(&self) -> Result<()>

fn Join(&self, dwmilliseconds: u32, option: u32) -> Result<()>

fn SetPriority(&self, newpriority: i32) -> Result<()>

fn GetPriority(&self) -> Result<i32>

fn SetCLRTask(&self, pclrtask: Ref<'_, ICLRTask>) -> 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.

Implementors§