pub trait INetworkFolderInternal_Impl: Sized {
    // Required methods
    fn GetResourceDisplayType(&self) -> Result<u32>;
    fn GetIDList(&self) -> Result<*mut ITEMIDLIST>;
    fn GetProvider(
        &self,
        itemidcount: u32,
        itemids: *const *const ITEMIDLIST,
        providermaxlength: u32,
        provider: PWSTR
    ) -> Result<()>;
}

Required Methods§

fn GetResourceDisplayType(&self) -> Result<u32>

fn GetIDList(&self) -> Result<*mut ITEMIDLIST>

fn GetProvider( &self, itemidcount: u32, itemids: *const *const ITEMIDLIST, providermaxlength: u32, provider: PWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§