pub trait IDrawVideoImage_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§