Trait IMFRealTimeClientEx_Impl
pub trait IMFRealTimeClientEx_Impl: IUnknownImpl {
// Required methods
fn RegisterThreadsEx(
&self,
pdwtaskindex: *mut u32,
wszclassname: &PCWSTR,
lbasepriority: i32,
) -> Result<()>;
fn UnregisterThreads(&self) -> Result<()>;
fn SetWorkQueueEx(
&self,
dwmultithreadedworkqueueid: u32,
lworkitembasepriority: i32,
) -> Result<()>;
}
Required Methods§
fn RegisterThreadsEx( &self, pdwtaskindex: *mut u32, wszclassname: &PCWSTR, lbasepriority: i32, ) -> Result<()>
fn UnregisterThreads(&self) -> Result<()>
fn SetWorkQueueEx( &self, dwmultithreadedworkqueueid: u32, lworkitembasepriority: i32, ) -> 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.