pub trait IPublishedApp_Impl: Sized + IShellApp_Impl {
    // Required methods
    fn Install(&self, pstinstall: *const SYSTEMTIME) -> Result<()>;
    fn GetPublishedAppInfo(&self, ppai: *mut PUBAPPINFO) -> Result<()>;
    fn Unschedule(&self) -> Result<()>;
}

Required Methods§

fn Install(&self, pstinstall: *const SYSTEMTIME) -> Result<()>

fn GetPublishedAppInfo(&self, ppai: *mut PUBAPPINFO) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§