pub trait IMFSinkWriterCallback_Impl: Sized {
    // Required methods
    fn OnFinalize(&self, hrstatus: HRESULT) -> Result<()>;
    fn OnMarker(
        &self,
        dwstreamindex: u32,
        pvcontext: *const c_void
    ) -> Result<()>;
}

Required Methods§

fn OnFinalize(&self, hrstatus: HRESULT) -> Result<()>

fn OnMarker(&self, dwstreamindex: u32, pvcontext: *const c_void) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§