Trait IWiaUIExtension_Impl
pub trait IWiaUIExtension_Impl: IUnknownImpl {
// Required methods
fn DeviceDialog(
&self,
pdevicedialogdata: *const DEVICEDIALOGDATA,
) -> Result<()>;
fn GetDeviceIcon(
&self,
bstrdeviceid: &BSTR,
phicon: *mut HICON,
nsize: u32,
) -> Result<()>;
fn GetDeviceBitmapLogo(
&self,
bstrdeviceid: &BSTR,
phbitmap: *mut HBITMAP,
nmaxwidth: u32,
nmaxheight: u32,
) -> Result<()>;
}
Required Methods§
fn DeviceDialog(&self, pdevicedialogdata: *const DEVICEDIALOGDATA) -> Result<()>
fn GetDeviceIcon( &self, bstrdeviceid: &BSTR, phicon: *mut HICON, nsize: u32, ) -> Result<()>
fn GetDeviceBitmapLogo( &self, bstrdeviceid: &BSTR, phbitmap: *mut HBITMAP, nmaxwidth: u32, nmaxheight: u32, ) -> 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.