pub trait IBanneredBar_Impl: Sized {
    // Required methods
    fn SetIconSize(&self, iicon: u32) -> Result<()>;
    fn GetIconSize(&self) -> Result<u32>;
    fn SetBitmap(&self, hbitmap: HBITMAP) -> Result<()>;
    fn GetBitmap(&self) -> Result<HBITMAP>;
}

Required Methods§

fn SetIconSize(&self, iicon: u32) -> Result<()>

fn GetIconSize(&self) -> Result<u32>

fn SetBitmap(&self, hbitmap: HBITMAP) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§