Trait IBanneredBar_Impl
pub trait IBanneredBar_Impl: IUnknownImpl {
// 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>
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.