pub trait IMFRealTimeClient_Impl: Sized {
    // Required methods
    fn RegisterThreads(&self, dwtaskindex: u32, wszclass: &PCWSTR) -> Result<()>;
    fn UnregisterThreads(&self) -> Result<()>;
    fn SetWorkQueue(&self, dwworkqueueid: u32) -> Result<()>;
}

Required Methods§

fn RegisterThreads(&self, dwtaskindex: u32, wszclass: &PCWSTR) -> Result<()>

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

fn SetWorkQueue(&self, dwworkqueueid: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§