windows::Win32::UI::Shell

Trait IStorageProviderPropertyHandler_Impl

pub trait IStorageProviderPropertyHandler_Impl: IUnknownImpl {
    // Required methods
    fn RetrieveProperties(
        &self,
        propertiestoretrieve: *const PROPERTYKEY,
        propertiestoretrievecount: u32,
    ) -> Result<IPropertyStore>;
    fn SaveProperties(
        &self,
        propertiestosave: Ref<'_, IPropertyStore>,
    ) -> Result<()>;
}

Required Methods§

fn RetrieveProperties( &self, propertiestoretrieve: *const PROPERTYKEY, propertiestoretrievecount: u32, ) -> Result<IPropertyStore>

fn SaveProperties( &self, propertiestosave: Ref<'_, IPropertyStore>, ) -> 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.

Implementors§