pub trait IMFVideoSampleAllocatorCallback_Impl: Sized {
    // Required methods
    fn SetCallback(
        &self,
        pnotify: Option<&IMFVideoSampleAllocatorNotify>,
    ) -> Result<()>;
    fn GetFreeSampleCount(&self) -> Result<i32>;
}

Required Methods§

fn SetCallback( &self, pnotify: Option<&IMFVideoSampleAllocatorNotify>, ) -> Result<()>

fn GetFreeSampleCount(&self) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§