pub trait IMSVidVideoRenderer2_Impl: Sized + IMSVidVideoRenderer_Impl {
    // Required methods
    fn Allocator(&self) -> Result<IUnknown>;
    fn _Allocator(&self) -> Result<IVMRSurfaceAllocator>;
    fn Allocator_ID(&self) -> Result<i32>;
    fn SetAllocator(
        &self,
        allocpresent: Option<&IUnknown>,
        id: i32
    ) -> Result<()>;
    fn _SetAllocator2(
        &self,
        allocpresent: Option<&IVMRSurfaceAllocator>,
        id: i32
    ) -> Result<()>;
    fn SetSuppressEffects(&self, bsuppress: VARIANT_BOOL) -> Result<()>;
    fn SuppressEffects(&self) -> Result<VARIANT_BOOL>;
}

Required Methods§

fn Allocator(&self) -> Result<IUnknown>

fn _Allocator(&self) -> Result<IVMRSurfaceAllocator>

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

fn SetAllocator(&self, allocpresent: Option<&IUnknown>, id: i32) -> Result<()>

fn _SetAllocator2( &self, allocpresent: Option<&IVMRSurfaceAllocator>, id: i32 ) -> Result<()>

fn SetSuppressEffects(&self, bsuppress: VARIANT_BOOL) -> Result<()>

fn SuppressEffects(&self) -> Result<VARIANT_BOOL>

Object Safety§

This trait is not object safe.

Implementors§