pub trait IWMColorConvProps_Impl: Sized {
    // Required methods
    fn SetMode(&self, lmode: i32) -> Result<()>;
    fn SetFullCroppingParam(
        &self,
        lsrccropleft: i32,
        lsrccroptop: i32,
        ldstcropleft: i32,
        ldstcroptop: i32,
        lcropwidth: i32,
        lcropheight: i32
    ) -> Result<()>;
}

Required Methods§

fn SetMode(&self, lmode: i32) -> Result<()>

fn SetFullCroppingParam( &self, lsrccropleft: i32, lsrccroptop: i32, ldstcropleft: i32, ldstcroptop: i32, lcropwidth: i32, lcropheight: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§