pub trait IUIImageFromBitmap_Impl: Sized {
    // Required method
    fn CreateImage(
        &self,
        bitmap: HBITMAP,
        options: UI_OWNERSHIP
    ) -> Result<IUIImage>;
}

Required Methods§

fn CreateImage( &self, bitmap: HBITMAP, options: UI_OWNERSHIP ) -> Result<IUIImage>

Object Safety§

This trait is not object safe.

Implementors§