Trait IExtractImage_Impl
pub trait IExtractImage_Impl: IUnknownImpl {
    // Required methods
    fn GetLocation(
        &self,
        pszpathbuffer: PWSTR,
        cch: u32,
        pdwpriority: *mut u32,
        prgsize: *const SIZE,
        dwrecclrdepth: u32,
        pdwflags: *mut u32,
    ) -> Result<()>;
    fn Extract(&self) -> Result<HBITMAP>;
}Required Methods§
fn GetLocation( &self, pszpathbuffer: PWSTR, cch: u32, pdwpriority: *mut u32, prgsize: *const SIZE, dwrecclrdepth: u32, pdwflags: *mut u32, ) -> Result<()>
fn Extract(&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.