windows::Win32::Media::DirectShow

Trait IFilterGraph2_Impl

pub trait IFilterGraph2_Impl: IGraphBuilder_Impl {
    // Required methods
    fn AddSourceFilterForMoniker(
        &self,
        pmoniker: Ref<'_, IMoniker>,
        pctx: Ref<'_, IBindCtx>,
        lpcwstrfiltername: &PCWSTR,
    ) -> Result<IBaseFilter>;
    fn ReconnectEx(
        &self,
        ppin: Ref<'_, IPin>,
        pmt: *const AM_MEDIA_TYPE,
    ) -> Result<()>;
    fn RenderEx(
        &self,
        ppinout: Ref<'_, IPin>,
        dwflags: u32,
        pvcontext: *const u32,
    ) -> Result<()>;
}

Required Methods§

fn AddSourceFilterForMoniker( &self, pmoniker: Ref<'_, IMoniker>, pctx: Ref<'_, IBindCtx>, lpcwstrfiltername: &PCWSTR, ) -> Result<IBaseFilter>

fn ReconnectEx( &self, ppin: Ref<'_, IPin>, pmt: *const AM_MEDIA_TYPE, ) -> Result<()>

fn RenderEx( &self, ppinout: Ref<'_, IPin>, dwflags: u32, pvcontext: *const 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§