windows::Win32::Media::DirectShow

Trait IDrawVideoImage_Impl

pub trait IDrawVideoImage_Impl: IUnknownImpl {
    // Required methods
    fn DrawVideoImageBegin(&self) -> Result<()>;
    fn DrawVideoImageEnd(&self) -> Result<()>;
    fn DrawVideoImageDraw(
        &self,
        hdc: HDC,
        lprcsrc: *const RECT,
        lprcdst: *const RECT,
    ) -> Result<()>;
}

Required Methods§

fn DrawVideoImageBegin(&self) -> Result<()>

fn DrawVideoImageEnd(&self) -> Result<()>

fn DrawVideoImageDraw( &self, hdc: HDC, lprcsrc: *const RECT, lprcdst: *const RECT, ) -> 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§