Trait IRunnableTask_Impl
pub trait IRunnableTask_Impl: IUnknownImpl {
    // Required methods
    fn Run(&self) -> Result<()>;
    fn Kill(&self, bwait: BOOL) -> Result<()>;
    fn Suspend(&self) -> Result<()>;
    fn Resume(&self) -> Result<()>;
    fn IsRunning(&self) -> u32;
}Required Methods§
fn Run(&self) -> Result<()>
fn Kill(&self, bwait: BOOL) -> Result<()>
fn Suspend(&self) -> Result<()>
fn Resume(&self) -> Result<()>
fn IsRunning(&self) -> u32
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.