pub trait IInitializeNetworkFolder_Impl: Sized {
    // Required method
    fn Initialize(
        &self,
        pidl: *const ITEMIDLIST,
        pidltarget: *const ITEMIDLIST,
        udisplaytype: u32,
        pszresname: &PCWSTR,
        pszprovider: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

fn Initialize( &self, pidl: *const ITEMIDLIST, pidltarget: *const ITEMIDLIST, udisplaytype: u32, pszresname: &PCWSTR, pszprovider: &PCWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§