windows::Win32::System::UpdateAgent

Trait IUpdateSession_Impl

pub trait IUpdateSession_Impl: 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: Ref<'_, IWebProxy>) -> Result<()>;
    fn CreateUpdateSearcher(&self) -> Result<IUpdateSearcher>;
    fn CreateUpdateDownloader(&self) -> Result<IUpdateDownloader>;
    fn CreateUpdateInstaller(&self) -> Result<IUpdateInstaller>;
}

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: Ref<'_, IWebProxy>) -> Result<()>

fn CreateUpdateSearcher(&self) -> Result<IUpdateSearcher>

fn CreateUpdateDownloader(&self) -> Result<IUpdateDownloader>

fn CreateUpdateInstaller(&self) -> Result<IUpdateInstaller>

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.

Implementors§