Trait windows::Win32::Graphics::Imaging::IWICBitmap_Impl

pub trait IWICBitmap_Impl: Sized + IWICBitmapSource_Impl {
    // Required methods
    fn Lock(
        &self,
        prclock: *const WICRect,
        flags: u32,
    ) -> Result<IWICBitmapLock>;
    fn SetPalette(&self, pipalette: Option<&IWICPalette>) -> Result<()>;
    fn SetResolution(&self, dpix: f64, dpiy: f64) -> Result<()>;
}

Required Methods§

fn Lock(&self, prclock: *const WICRect, flags: u32) -> Result<IWICBitmapLock>

fn SetPalette(&self, pipalette: Option<&IWICPalette>) -> Result<()>

fn SetResolution(&self, dpix: f64, dpiy: f64) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§