Trait IDefaultExtractIconInit_Impl
pub trait IDefaultExtractIconInit_Impl: IUnknownImpl {
// Required methods
fn SetFlags(&self, uflags: u32) -> Result<()>;
fn SetKey(&self, hkey: HKEY) -> Result<()>;
fn SetNormalIcon(&self, pszfile: &PCWSTR, iicon: i32) -> Result<()>;
fn SetOpenIcon(&self, pszfile: &PCWSTR, iicon: i32) -> Result<()>;
fn SetShortcutIcon(&self, pszfile: &PCWSTR, iicon: i32) -> Result<()>;
fn SetDefaultIcon(&self, pszfile: &PCWSTR, iicon: i32) -> Result<()>;
}
Required Methods§
fn SetFlags(&self, uflags: u32) -> Result<()>
fn SetKey(&self, hkey: HKEY) -> Result<()>
fn SetNormalIcon(&self, pszfile: &PCWSTR, iicon: i32) -> Result<()>
fn SetOpenIcon(&self, pszfile: &PCWSTR, iicon: i32) -> Result<()>
fn SetShortcutIcon(&self, pszfile: &PCWSTR, iicon: i32) -> Result<()>
fn SetDefaultIcon(&self, pszfile: &PCWSTR, iicon: i32) -> Result<()>
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.