pub trait IMFTimer_Impl: Sized {
    // Required methods
    fn SetTimer(
        &self,
        dwflags: u32,
        llclocktime: i64,
        pcallback: Option<&IMFAsyncCallback>,
        punkstate: Option<&IUnknown>
    ) -> Result<IUnknown>;
    fn CancelTimer(&self, punkkey: Option<&IUnknown>) -> Result<()>;
}

Required Methods§

fn SetTimer( &self, dwflags: u32, llclocktime: i64, pcallback: Option<&IMFAsyncCallback>, punkstate: Option<&IUnknown> ) -> Result<IUnknown>

fn CancelTimer(&self, punkkey: Option<&IUnknown>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§