pub trait IMFTopoLoader_Impl: Sized {
    // Required method
    fn Load(
        &self,
        pinputtopo: Option<&IMFTopology>,
        ppoutputtopo: *mut Option<IMFTopology>,
        pcurrenttopo: Option<&IMFTopology>
    ) -> Result<()>;
}

Required Methods§

fn Load( &self, pinputtopo: Option<&IMFTopology>, ppoutputtopo: *mut Option<IMFTopology>, pcurrenttopo: Option<&IMFTopology> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§