pub trait IShellImageDataFactory_Impl: Sized {
    // Required methods
    fn CreateIShellImageData(&self) -> Result<IShellImageData>;
    fn CreateImageFromFile(&self, pszpath: &PCWSTR) -> Result<IShellImageData>;
    fn CreateImageFromStream(
        &self,
        pstream: Option<&IStream>
    ) -> Result<IShellImageData>;
    fn GetDataFormatFromPath(&self, pszpath: &PCWSTR) -> Result<GUID>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§