Trait ICustomDestinationList_Impl
pub trait ICustomDestinationList_Impl: IUnknownImpl {
    // Required methods
    fn SetAppID(&self, pszappid: &PCWSTR) -> Result<()>;
    fn BeginList(
        &self,
        pcminslots: *mut u32,
        riid: *const GUID,
        ppv: *mut *mut c_void,
    ) -> Result<()>;
    fn AppendCategory(
        &self,
        pszcategory: &PCWSTR,
        poa: Ref<'_, IObjectArray>,
    ) -> Result<()>;
    fn AppendKnownCategory(&self, category: KNOWNDESTCATEGORY) -> Result<()>;
    fn AddUserTasks(&self, poa: Ref<'_, IObjectArray>) -> Result<()>;
    fn CommitList(&self) -> Result<()>;
    fn GetRemovedDestinations(
        &self,
        riid: *const GUID,
        ppv: *mut *mut c_void,
    ) -> Result<()>;
    fn DeleteList(&self, pszappid: &PCWSTR) -> Result<()>;
    fn AbortList(&self) -> Result<()>;
}Required Methods§
fn SetAppID(&self, pszappid: &PCWSTR) -> Result<()>
fn BeginList( &self, pcminslots: *mut u32, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>
fn AppendCategory( &self, pszcategory: &PCWSTR, poa: Ref<'_, IObjectArray>, ) -> Result<()>
fn AppendKnownCategory(&self, category: KNOWNDESTCATEGORY) -> Result<()>
fn AddUserTasks(&self, poa: Ref<'_, IObjectArray>) -> Result<()>
fn CommitList(&self) -> Result<()>
fn GetRemovedDestinations( &self, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>
fn DeleteList(&self, pszappid: &PCWSTR) -> Result<()>
fn AbortList(&self) -> 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.