pub trait IUpdateSession_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn ClientApplicationID(&self) -> Result<BSTR>;
    fn SetClientApplicationID(&self, value: &BSTR) -> Result<()>;
    fn ReadOnly(&self) -> Result<VARIANT_BOOL>;
    fn WebProxy(&self) -> Result<IWebProxy>;
    fn SetWebProxy(&self, value: Option<&IWebProxy>) -> Result<()>;
    fn CreateUpdateSearcher(&self) -> Result<IUpdateSearcher>;
    fn CreateUpdateDownloader(&self) -> Result<IUpdateDownloader>;
    fn CreateUpdateInstaller(&self) -> Result<IUpdateInstaller>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§