pub trait IAudioFrameNativeFactory_Impl: Sized {
    // Required method
    fn CreateFromMFSample(
        &self,
        data: Option<&IMFSample>,
        forcereadonly: BOOL,
        riid: *const GUID,
        ppv: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn CreateFromMFSample( &self, data: Option<&IMFSample>, forcereadonly: BOOL, riid: *const GUID, ppv: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§