pub trait IOpenServiceManager_Impl: Sized {
    // Required methods
    fn InstallService(&self, pwzserviceurl: &PCWSTR) -> Result<IOpenService>;
    fn UninstallService(&self, pservice: Option<&IOpenService>) -> Result<()>;
    fn GetServiceByID(&self, pwzid: &PCWSTR) -> Result<IOpenService>;
}

Required Methods§

fn InstallService(&self, pwzserviceurl: &PCWSTR) -> Result<IOpenService>

fn UninstallService(&self, pservice: Option<&IOpenService>) -> Result<()>

fn GetServiceByID(&self, pwzid: &PCWSTR) -> Result<IOpenService>

Object Safety§

This trait is not object safe.

Implementors§