pub trait IPersistFolder3_Impl: Sized + IPersistFolder2_Impl {
    // Required methods
    fn InitializeEx(
        &self,
        pbc: Option<&IBindCtx>,
        pidlroot: *const ITEMIDLIST,
        ppfti: *const PERSIST_FOLDER_TARGET_INFO
    ) -> Result<()>;
    fn GetFolderTargetInfo(
        &self,
        ppfti: *mut PERSIST_FOLDER_TARGET_INFO
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§