Trait IComMtaThreadPoolKnobs_Impl
pub trait IComMtaThreadPoolKnobs_Impl: IUnknownImpl {
// Required methods
fn MTASetMaxThreadCount(&self, dwmaxthreads: u32) -> Result<()>;
fn MTAGetMaxThreadCount(&self) -> Result<u32>;
fn MTASetThrottleValue(&self, dwthrottle: u32) -> Result<()>;
fn MTAGetThrottleValue(&self) -> Result<u32>;
}
Required Methods§
fn MTASetMaxThreadCount(&self, dwmaxthreads: u32) -> Result<()>
fn MTAGetMaxThreadCount(&self) -> Result<u32>
fn MTASetThrottleValue(&self, dwthrottle: u32) -> Result<()>
fn MTAGetThrottleValue(&self) -> Result<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.