windows::Win32::Media::MediaPlayer

Trait IWMPGraphCreation_Impl

pub trait IWMPGraphCreation_Impl: IUnknownImpl {
    // Required methods
    fn GraphCreationPreRender(
        &self,
        pfiltergraph: Ref<'_, IUnknown>,
        preserved: Ref<'_, IUnknown>,
    ) -> Result<()>;
    fn GraphCreationPostRender(
        &self,
        pfiltergraph: Ref<'_, IUnknown>,
    ) -> Result<()>;
    fn GetGraphCreationFlags(&self, pdwflags: *mut u32) -> Result<()>;
}

Required Methods§

fn GraphCreationPreRender( &self, pfiltergraph: Ref<'_, IUnknown>, preserved: Ref<'_, IUnknown>, ) -> Result<()>

fn GraphCreationPostRender(&self, pfiltergraph: Ref<'_, IUnknown>) -> Result<()>

fn GetGraphCreationFlags(&self, pdwflags: *mut u32) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§