pub trait IApplicationDestinations_Impl: Sized {
    // Required methods
    fn SetAppID(&self, pszappid: &PCWSTR) -> Result<()>;
    fn RemoveDestination(&self, punk: Option<&IUnknown>) -> Result<()>;
    fn RemoveAllDestinations(&self) -> Result<()>;
}

Required Methods§

fn SetAppID(&self, pszappid: &PCWSTR) -> Result<()>

fn RemoveDestination(&self, punk: Option<&IUnknown>) -> Result<()>

fn RemoveAllDestinations(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§