windows::Win32::UI::Shell

Trait ISharedBitmap_Impl

pub trait ISharedBitmap_Impl: IUnknownImpl {
    // Required methods
    fn GetSharedBitmap(&self) -> Result<HBITMAP>;
    fn GetSize(&self) -> Result<SIZE>;
    fn GetFormat(&self) -> Result<WTS_ALPHATYPE>;
    fn InitializeBitmap(&self, hbm: HBITMAP, wtsat: WTS_ALPHATYPE) -> Result<()>;
    fn Detach(&self) -> Result<HBITMAP>;
}

Required Methods§

fn GetSharedBitmap(&self) -> Result<HBITMAP>

fn GetSize(&self) -> Result<SIZE>

fn GetFormat(&self) -> Result<WTS_ALPHATYPE>

fn InitializeBitmap(&self, hbm: HBITMAP, wtsat: WTS_ALPHATYPE) -> Result<()>

fn Detach(&self) -> Result<HBITMAP>

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§